deactivate venv python code example

Example 1: how to exit virtualenv

$ deactivate

Example 2: deactivate venv

deactivate venv

Example 3: python create virtualenv

pip install virtualenv # install first
cd projectfolder # go to project folder
python -m venv ./venv # Create a virtual environment named venv
Activate.ps1 # (powershell) start the file  to start the environment
activate.bat # (cmd) start the file  to start the environment
# if it worked you'll see a (venv) in front of your cursor path

Example 4: how to deactivate virtualenv

# This would only work when you have virtualenv activated.
# Kinda obvious, but I guess I'll point it out.

# Just type in this in your shell:
deactivate

Example 5: py how to deactivate venv

$ deactivate
or
$ conda deactivate

Example 6: create a virtual environment python 3

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

Tags:

Misc Example