Lines Matching +full:packages +full:- +full:dir
1 Creation of :ref:`virtual environments <venv-def>` is done by executing the
4 python -m venv /path/to/new/virtual/environment
13 ``lib/pythonX.Y/site-packages`` subdirectory (on Windows, this is
14 ``Lib\site-packages``). If an existing directory is specified, it will be
15 re-used.
20 :ref:`deprecated in Python 3.6 <whatsnew36-venv>`.
29 c:\>c:\Python35\python -m venv c:\path\to\myenv
32 your :ref:`Python installation <using-on-windows>`::
34 c:\>python -m venv c:\path\to\myenv
36 The command, if run with ``-h``, will show the available options::
38 usage: venv [-h] [--system-site-packages] [--symlinks | --copies] [--clear]
39 [--upgrade] [--without-pip] [--prompt PROMPT] [--upgrade-deps]
48 -h, --help show this help message and exit
49 --system-site-packages
51 site-packages dir.
52 --symlinks Try to use symlinks rather than copies, when symlinks
54 --copies Try to use copies rather than symlinks, even when
56 --clear Delete the contents of the environment directory if it
58 --upgrade Upgrade the environment directory to use this version
59 of Python, assuming Python has been upgraded in-place.
60 --without-pip Skips installing or upgrading pip in the virtual
62 --prompt PROMPT Provides an alternative prompt prefix for this
64 --upgrade-deps Upgrade core dependencies: pip setuptools to the
71 Add ``--upgrade-deps`` option to upgrade pip + setuptools to the latest on PyPI
74 Installs pip by default, added the ``--without-pip`` and ``--copies``
79 raised, unless the ``--clear`` or ``--upgrade`` option was provided.
83 particular note is that double-clicking ``python.exe`` in File Explorer
91 PS C:\> Set-ExecutionPolicy -ExecutionPolicy RemoteSigned -Scope CurrentUser
98 ``include-system-site-packages`` key, set to ``true`` if ``venv`` is
99 run with the ``--system-site-packages`` option, ``false`` otherwise.
101 Unless the ``--without-pip`` option is given, :mod:`ensurepip` will be