Skip to content

Instantly share code, notes, and snippets.

@powellnathanj
Created October 18, 2023 19:53
Show Gist options
  • Save powellnathanj/b9b071571191c207e966b2d5f14223ad to your computer and use it in GitHub Desktop.
Save powellnathanj/b9b071571191c207e966b2d5f14223ad to your computer and use it in GitHub Desktop.
Working Ansible/Azure pipenv environment (RHEL 8)
python3.8 -m pip install pipenv
mkdir env
cd env
pipenv install
pipenv shell
pip install ansible
pip install azure-cli
ansible-galaxy collection install azure.azcollection --force # need to be on latest to fix a lot
sudo updatedb
pip install -r $(locate requirements-azure.txt | grep -v sanity | grep env)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment