Lines Matching full:venv
1 :mod:`venv` --- Creation of virtual environments
4 .. module:: venv
12 **Source code:** :source:`Lib/venv/`
21 The :mod:`!venv` module supports creating lightweight "virtual environments",
45 .. include:: /using/venv-create.inc
67 (:samp:`{<venv>}` must be replaced by the path to the directory
73 | POSIX | bash/zsh | :samp:`$ source {<venv>}/bin/activate` |
75 | | fish | :samp:`$ source {<venv>}/bin/activate.fish` |
77 | | csh/tcsh | :samp:`$ source {<venv>}/bin/activate.csh` |
79 | | PowerShell | :samp:`$ {<venv>}/bin/Activate.ps1` |
81 | Windows | cmd.exe | :samp:`C:\\> {<venv>}\\Scripts\\activate.bat` |
83 | | PowerShell | :samp:`PS C:\\> {<venv>}\\Scripts\\Activate.ps1` |
101 i.e. :samp:`#!/{<path-to-venv>}/bin/python`.
173 * ``upgrade_deps`` -- Update the base venv modules to the latest on PyPI
265 The *venv*
287 Upgrades the core venv dependency packages (currently ``pip`` and
372 import venv
374 class ExtendedEnvBuilder(venv.EnvBuilder):