rhel

How to fix — bash: /usr/bin/python: Too many levels of symbolic links

How to fix — bash: /usr/bin/python: Too many levels of symbolic links Question: I wanted to make python3 my default on rhel so I followed the following at How to set Python3.5.2 as default Python version on CentOS? sudo ln -fs /usr/bin/python3 /usr/bin/python It changed the default to 3.6.8 root@rhel:~# python -V Python 3.6.8 Then …

Total answers: 4

Cannot run ansible on RHEL 7 – Paramiko is not installed

Cannot run ansible on RHEL 7 – Paramiko is not installed Question: I have a server running RHEL 7, and I have installed ansible but cannot run a playbook with error saying paramiko is not installed. I have verified that paramiko is installed and also tried to install paramiko using pip but still does not …

Total answers: 3

Installing Python 3 on RHEL

Installing Python 3 on RHEL Question: I’m trying to install python3 on RHEL using the following steps: yum search python3 Which returned No matches found for: python3 Followed by: yum search python None of the search results contained python3. What should I try next? Asked By: Chander Shivdasani || Source Answers: It is easy to …

Total answers: 19

On linux SUSE or RedHat, how do I load Python 2.7

On linux SUSE or RedHat, how do I load Python 2.7 Question: Can someone provide the steps needed to install python version 2.7 on SUSE and RedHat? It version that is on there is like 2.4 and I need to have it at at least 2.6 to make my script work. So after the install, …

Total answers: 11