Lines Matching full:venv
1 Creation of :ref:`virtual environments <venv-def>` is done by executing the
2 command ``venv``::
4 python3 -m venv /path/to/new/virtual/environment
9 was run (a common name for the target directory is ``.venv``). It also creates
23 The use of ``venv`` is now recommended for creating virtual environments.
27 On Windows, invoke the ``venv`` command as follows::
29 c:\>c:\Python35\python -m venv c:\path\to\myenv
34 c:\>python -m venv c:\path\to\myenv
38 usage: venv [-h] [--system-site-packages] [--symlinks | --copies] [--clear]
98 ``include-system-site-packages`` key, set to ``true`` if ``venv`` is
104 Multiple paths can be given to ``venv``, in which case an identical virtual
110 script is platform-specific (`<venv>` must be replaced by the path of the
116 | POSIX | bash/zsh | $ source <venv>/bin/activate |
118 | | fish | $ source <venv>/bin/activate.fish |
120 | | csh/tcsh | $ source <venv>/bin/activate.csh |
122 | | PowerShell Core | $ <venv>/bin/Activate.ps1 |
124 | Windows | cmd.exe | C:\\> <venv>\\Scripts\\activate.bat |
126 | | PowerShell | PS C:\\> <venv>\\Scripts\\Activate.ps1 |