======Python Virtual Environment====== A good primer is at https://realpython.com/python-virtual-environments-a-primer/ ====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