Skip to content

Instantly share code, notes, and snippets.

@rubendob
Created August 21, 2018 09:53
Show Gist options
  • Save rubendob/c709014cc82b5f0c72c88e308c432935 to your computer and use it in GitHub Desktop.
Save rubendob/c709014cc82b5f0c72c88e308c432935 to your computer and use it in GitHub Desktop.
Ansible via pip
# 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