Skip to content
This repository was archived by the owner on Oct 3, 2020. It is now read-only.

Latest commit

 

History

History
19 lines (14 loc) · 425 Bytes

File metadata and controls

19 lines (14 loc) · 425 Bytes

General Python notes

If you're using Miniconda / Anaconda and want to switch Python versions, do like:

conda create -n py37 python=3.7

To switch to Python 3.7 (or whatever environment you create) do in each terminal:

conda activate py37

and then run the desired commands. Note you'd need to again do:

python -m pip install -e .

to activate this program in the environment (one time).