python_virtual_env
Table of Contents
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
python_virtual_env.txt · Last modified: 2019/12/18 15:57 by jrseti