Skip to content
This repository was archived by the owner on Dec 9, 2024. It is now read-only.

[Guide] virtualenv

Joseph Sweeney edited this page Mar 23, 2017 · 1 revision

To simplify Python dependencies, use virtualenv. This tool can be install with pip:

pip install virtualenv

A virtual environment named venv already exists in the root project directory. To activate it:

source venv/bin/activate

Your bash prompt will now begin with (venv). To deactivate virtualenv:

deactivate