Python Virtual Environment
How I set mine up
Create a new directory and cd to it
python3 -m venv env
source env/bin/activate
(to get out of this environment) “deactivate”
git clone into this directory
More stuff to install
pip install autopep8
pip install yapf
pip install pylint