kuniga.me > Docs > Venv Cheatsheet

Venv Cheatsheet

Setup vend

This step is only needed the first time you create the virtual environment.

python3 -m venv /home/kunigami/python/

Start venv

source /home/kunigami/python/bin/activate

Note that /home/kunigami/python/bin/activate is a bash script.

Exit venv

deactivate