About the Built-in Virtual Environment

Since Python 3.3, virtual environment is built into Python and you can use it with the following:

1
2
3
$ python3 -m venv venv
$ source venv/bin/activate
(env)$ pip install -r requirements.txt

Development Python 3