- python 2.7 https://www.python.org/download/releases/2.7/
pip install virtualenv(if necessary) [also install/link pip if you don't have it (if on Mac OS, use sudo easy_install pip)]virtualenv venv- activate your virtualenv (and not run any global python installations)
- on OSX:
source venv/bin/activate - on Windows:
call venv\Scripts\activate
- on OSX:
- run
pip install -r requirements.txtto install dependencies
Development: run python run.py to test it out