My workflow:
cd project
python -m venv .venv
. ./.venv/bin/activate
pip install -e .
By default pyvenv excludes system packages, so I can have different versions in the venv. To reset the venv, I just have to delete the .venv dir.
My workflow:
cd project
python -m venv .venv
. ./.venv/bin/activate
pip install -e .
By default pyvenv excludes system packages, so I can have different versions in the venv. To reset the venv, I just have to delete the .venv dir.