Virual Environment
venv
-
Create
python -m venv /path/to/new/virtual/environmentpyvenv.cfgwill be createdinclude-system-site-packageswill be set to true if system packages are to be used
- Activate
- bash/zsh
$ source <venv>/bin/activate - fish
$ source <venv>/bin/activate.fish - csh/tcsh
$ source <venv>/bin/activate.csh - PowerShell
$ <venv>/bin/Activate.ps1 - cmd.exe
C:\> <venv>\Scripts\activate.bat, windows - PowerShell
PS C:\> <venv>\Scripts\Activate.ps1, windows
- bash/zsh
conda
- in conda you can also set the python version