-
Notifications
You must be signed in to change notification settings - Fork 0
Python
Dave Cox edited this page Jul 31, 2025
·
1 revision
aka venvs
Used to isolate a set of dependencies, needed by a particular Python project/program, from other incompatible sets.
Use venv module:
python -m venv path/to/venv/
path\to\venv\Scripts\Activate.ps1 (or cmd)
path/to/venv/bin/activate ?
pip install -r requirements.txt