There was an error while loading. Please reload this page.
To simplify Python dependencies, use virtualenv. This tool can be install with pip:
virtualenv
pip
pip install virtualenv
A virtual environment named venv already exists in the root project directory. To activate it:
venv
source venv/bin/activate
Your bash prompt will now begin with (venv). To deactivate virtualenv:
bash
(venv)
deactivate