Created
August 21, 2018 09:53
-
-
Save rubendob/c709014cc82b5f0c72c88e308c432935 to your computer and use it in GitHub Desktop.
Ansible via pip
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# remove previous installed package | |
sudo apt-get remove --purge ansible | |
# install pip | |
wget https://bootstrap.pypa.io/get-pip.py && python get-pip.py --user | |
# install ansible | |
pip install ansible==2.5.0 --user | |
# update PATH | |
PATH="$HOME/bin:$HOME/.local/bin:$PATH" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment