Installation of Ansible on Jump Server with version 4.9.0


I have been trying to install the Ansible on Jump Server using pip3 and the command for the installation I am using is:-
python3 -m pip install --user ansible
and for the upgradation of version of ansible of my choice i.e. 4.9.0, I am using the command:-
pip install ansible==2.9.0
But, still not getting the successful results… please help…!!
Thanks in Advance :sweat_smile:

As I remember this task, you must install Ansible globally to system, not to user. And you can install right version in a first time, not in upgrade.
I made this via:
sudo pip3 install "ansible==4.9.0"
Hope this helps you.

3 Likes

Thank you so much… :blush: