Skip to content

Instantly share code, notes, and snippets.

@pearofducks
Last active December 20, 2015 11:19
Show Gist options
  • Save pearofducks/6121900 to your computer and use it in GitHub Desktop.
Save pearofducks/6121900 to your computer and use it in GitHub Desktop.
MacOS - Ansible homebrew install
brew install python
pip install PyYAML jinja2
sudo pip install ansible
# paramiko isn't needed, MacOS has new enough ssh
# sudo is needed for the ansible install because it wants to put resources in /usr/share
# an alternative to using sudo is to checkout ansible from
https://github.com/ansible/ansible
# then run in the root of the git checkout
find . -type f -exec sed -i "" "s#/usr/share/#/usr/local/share/#g" '{}' \;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment