Skip to content

Instantly share code, notes, and snippets.

@jsumners
Last active September 21, 2017 18:21
Show Gist options
  • Save jsumners/ea2fdaef12c1545ec2e21df0b261449d to your computer and use it in GitHub Desktop.
Save jsumners/ea2fdaef12c1545ec2e21df0b261449d to your computer and use it in GitHub Desktop.
Install Ansible from GitHub with MacPorts
#!/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