|
|
|
|
|
by ploxiln
1214 days ago
|
|
python3 includes "venv". If you don't have an existing preference, use that. python3 -m venv ../my-venv-dir # wherever you like
. ../my-venv-dir/bin/activate
pip install whatever
you can close your terminal and "rm -r" the venv dir, and no trace will be left. (or you can just "deactivate" and use it again later) |
|