Python: using a virtual environment
# Create the venv python -m venv .venv # Activate the venv source .venv/bin/activate # Deactivate again deactivate
# Create the venv python -m venv .venv # Activate the venv source .venv/bin/activate # Deactivate again deactivate