🎃 Valiukas

jump to main content

Python: using a virtual environment

Sep 13, 2022

# Create the venv
python -m venv .venv

# Activate the venv
source .venv/bin/activate

# Deactivate again
deactivate