Up and Running With Ansible
This is just a quick article to catalog setting up ansible.
This configuration uses the following tools:
I’m using the basic build from the Latest Releases Via Pip guide.
$ anyenv install pyenv
$ exec bash -l
$ CFLAGS="-I$(xcrun --show-sdk-path)/usr/include" pyenv install 2.6.9
$ pyenv rehash
$ pyenv shell 2.6.9
$ pyenv rehash
$ ansible --version
ansible 1.9.4
Note
The CFLAGS
is for a build error encountered on OSX.
See the Build failed: “ERROR: The Python zlib extension was not compiled. Missing the zlib?” article for more details.