venv
venv
Categories:
Create a dir (and any subdirs) and place a pyvenv.cfg as well as a bin dir.
python -m venv PATH
For example:
python -m venv .venv
To activate the virtual environment:
source PATH/bin/activate
To deactivate the virtual environment:
deactivate