#Preparing python for development ##This useful in general; not only for this course
Download and install using the installer appropriate for your OS.
Note: we use python 2.7 for this course.
OS X: Install Homebrew
ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)"Linux: You are good to go.
OS X:
brew install pipDebian/Ubuntu:
sudo apt-get install python-pipFedora:
sudo yum install python-pipDebian/Ubuntu:
sudo apt-get install python-devFedora:
sudo yum install python-develThis will prevent some confusing issues where you can't install python packages.
Install virtualenv:
pip install virtualenvEnter the following to create the virtualenv, and store it in the 'env' directory:
virtualenv envNow, install the requirements:
pip install -r requirements.txt