Skip to content

Python

Commands

virtual environment

python3 -m .venv /path/to/new/virtual/environment

activate the venv

source /path/to/new/virtual/environment/bin/activate

install the dependenies in requirements.txt

pip3 install -r requirements.txt
Back to top