Last active
September 21, 2017 18:21
-
-
Save jsumners/ea2fdaef12c1545ec2e21df0b261449d to your computer and use it in GitHub Desktop.
Install Ansible from GitHub with MacPorts
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
#!/bin/bash | |
sudo port install py27-pip pip_select && \ | |
sudo port select --set python python27 && \ | |
sudo port select --set python2 python27 && \ | |
sudo port select --set pip pip27 && \ | |
sudo pip install jmespath && \ | |
sudo pip install git+git://github.com/ansible/[email protected] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment