Venv

virtual environment for the python project

Create a Virtual Enviroment

python -m venv venv

Activate the Virtual Environment

source myenv/bin/activate

Deactivate the Virtual Enviroment

deactivate
Back to top