Lines Matching refs: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
22 The use of ``venv`` is now recommended for creating virtual environments.
26 On Windows, invoke the ``venv`` command as follows::
28 c:\>c:\Python35\python -m venv c:\path\to\myenv
33 c:\>python -m venv c:\path\to\myenv
37 usage: venv [-h] [--system-site-packages] [--symlinks | --copies] [--clear]
81 ``include-system-site-packages`` key, set to ``true`` if ``venv`` is
87 Multiple paths can be given to ``venv``, in which case an identical virtual
93 script is platform-specific (`<venv>` must be replaced by the path of the
99 | Posix | bash/zsh | $ source <venv>/bin/activate |
101 | | fish | $ . <venv>/bin/activate.fish |
103 | | csh/tcsh | $ source <venv>/bin/activate.csh |
105 | Windows | cmd.exe | C:\\> <venv>\\Scripts\\activate.bat |
107 | | PowerShell | PS C:\\> <venv>\\Scripts\\Activate.ps1 |