Last active
December 20, 2015 11:19
-
-
Save pearofducks/6121900 to your computer and use it in GitHub Desktop.
MacOS - Ansible homebrew install
This file contains hidden or 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
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