- Install virtual environment
pip install virtualenv
or it could beeasy_install virtualenv
- Create a virtual env called venv
virtualenv venv
or it could bepython virtualenv.py venv
- Activate your venv by typing
source venv/bin/activate
- Install requirements into your virutal environment
pip install -r requirements.txt
4a. If step 4 fails --- You may need tobrew install libevent
andpip install pyzmq gevent_zeromq gevent-socketio
ORDER IS CRITICAL - Run the server
python manage.py runserver