Monday, March 7, 2016

Random notes: Installing Ansible in a virtual Python environment on Mac OS X and running Ansible in a VirtualBox and Vagrant env

Download and install Vagrant

http://docs.python-guide.org/en/latest/dev/virtualenvs/

mkdir ansible_ve
cd ansible_ve
virtualenv venv
source venv/bin/activate
sudo easy_install ansible

When you are done working in the virtual environment for the moment, you can deactivate it:

deactivate

UNDER CONSTRUCTION