Skip to content

Instantly share code, notes, and snippets.

Installing multiple versions of ansible
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