Skip to content

Instantly share code, notes, and snippets.

@1davidmichael
Last active January 17, 2017 22:34
Show Gist options
  • Save 1davidmichael/1f6d61a7fd8e76169c32d253f6d0d164 to your computer and use it in GitHub Desktop.
Save 1davidmichael/1f6d61a7fd8e76169c32d253f6d0d164 to your computer and use it in GitHub Desktop.
Install custom ansible version in a virtualenv
#!/bin/bash
mkdir -p ansible_virtualenv
cd ansible_virtualenv
virtualenv .
source ./bin/activate
git clone https://github.com/meredith-digops/ansible.git && cd ansible
git checkout meredith
git submodule update --init --recursive
pip install .
pip install boto3
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment