Python
General venv:
`python3 -m venv /path/to/venv/folder` - Creates venv
- `-m` instructs python to run library module as a script
`source /path/to/venv/folder/bin/activate` - Activates venv
`deactivate` - Turns off venv
- While in venv,
python3 -m pip install {lib}will download into venv
uv