Created
May 2, 2020 15:56
Installing multiple versions of ansible
This file contains 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
pyenv install 3.8.2 | |
pyenv global 3.8.2 | |
pyenv virtualenv ansible29 | |
pyenv activate ansible29 | |
pip install --upgrade pip | |
pip install ansible~=2.9.0 awscli pycrypto netaddr boto boto3 | |
pyenv rehash | |
pyenv deactivate | |
pyenv virtualenv ansible24 | |
pyenv activate ansible24 | |
pip install --upgrade pip | |
pip install ansible~=2.4.0 awscli pycrypto netaddr boto boto3 | |
pyenv rehash | |
pyenv deactivate |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment