blob: 997e24bd2b5115eeeb45e4fcfdec4635927f5dcf [file] [log] [blame]
Vinay Sajipc4618e32012-07-10 08:21:07 +01001Creation of :ref:`virtual environments <venv-def>` is done by executing the
2``pyvenv`` script::
3
4 pyvenv /path/to/new/virtual/environment
5
6Running this command creates the target directory (creating any parent
7directories that don't exist already) and places a ``pyvenv.cfg`` file in it
8with a ``home`` key pointing to the Python installation the command was run
9from. It also creates a ``bin`` (or ``Scripts`` on Windows) subdirectory
10containing a copy of the ``python`` binary (or binaries, in the case of
11Windows). It also creates an (initially empty) ``lib/pythonX.Y/site-packages``
12subdirectory (on Windows, this is ``Lib\site-packages``).
13
14.. highlight:: none
15
16On Windows, you may have to invoke the ``pyvenv`` script as follows, if you
17don't have the relevant PATH and PATHEXT settings::
18
19 c:\Temp>c:\Python33\python c:\Python33\Tools\Scripts\pyvenv.py myenv
20
21or equivalently::
22
23 c:\Temp>c:\Python33\python -m venv myenv
24
25The command, if run with ``-h``, will show the available options::
26
27 usage: pyvenv [-h] [--system-site-packages] [--symlinks] [--clear]
Nick Coghlan8fbdb092013-11-23 00:30:34 +100028 [--upgrade] [--without-pip] ENV_DIR [ENV_DIR ...]
Vinay Sajipc4618e32012-07-10 08:21:07 +010029
30 Creates virtual Python environments in one or more target directories.
31
32 positional arguments:
33 ENV_DIR A directory to create the environment in.
34
35 optional arguments:
36 -h, --help show this help message and exit
37 --system-site-packages Give access to the global site-packages dir to the
38 virtual environment.
39 --symlinks Try to use symlinks rather than copies, when symlinks
40 are not the default for the platform.
41 --clear Delete the environment directory if it already exists.
42 If not specified and the directory exists, an error is
43 raised.
44 --upgrade Upgrade the environment directory to use this version
45 of Python, assuming Python has been upgraded in-place.
Nick Coghlan8fbdb092013-11-23 00:30:34 +100046 --without-pip Skips installing or upgrading pip in the virtual
47 environment (pip is bootstrapped by default)
48
49.. versionchanged:: 3.4
50 Installs pip by default, added the ``--without-pip`` option
Vinay Sajipc4618e32012-07-10 08:21:07 +010051
52If the target directory already exists an error will be raised, unless
53the ``--clear`` or ``--upgrade`` option was provided.
54
55The created ``pyvenv.cfg`` file also includes the
56``include-system-site-packages`` key, set to ``true`` if ``venv`` is
57run with the ``--system-site-packages`` option, ``false`` otherwise.
58
Nick Coghlan8fbdb092013-11-23 00:30:34 +100059Unless the ``--without-pip`` option is given, :mod:`ensurepip` will be
60invoked to bootstrap ``pip`` into the virtual environment.
61
Vinay Sajipc4618e32012-07-10 08:21:07 +010062Multiple paths can be given to ``pyvenv``, in which case an identical
63virtualenv will be created, according to the given options, at each
64provided path.
65
66Once a venv has been created, it can be "activated" using a script in the
Andrew Svetlov65e9c572012-10-04 21:48:58 +030067venv's binary directory. The invocation of the script is platform-specific:
Vinay Sajipc4618e32012-07-10 08:21:07 +010068
Andrew Svetlov65e9c572012-10-04 21:48:58 +030069+-------------+-----------------+-----------------------------------------+
70| Platform | Shell | Command to activate virtual environment |
71+=============+=================+=========================================+
72| Posix | bash/zsh | $ source <venv>/bin/activate |
73+-------------+-----------------+-----------------------------------------+
74| | fish | $ . <venv>/bin/activate.fish |
75+-------------+-----------------+-----------------------------------------+
76| | csh/tcsh | $ source <venv>/bin/activate.csh |
77+-------------+-----------------+-----------------------------------------+
78| Windows | cmd.exe | C:\> <venv>/Scripts/activate.bat |
79+-------------+-----------------+-----------------------------------------+
80| | PowerShell | PS C:\> <venv>/Scripts/Activate.ps1 |
81+-------------+-----------------+-----------------------------------------+
Vinay Sajipc4618e32012-07-10 08:21:07 +010082
83You don't specifically *need* to activate an environment; activation just
84prepends the venv's binary directory to your path, so that "python" invokes the
85venv's Python interpreter and you can run installed scripts without having to
86use their full path. However, all scripts installed in a venv should be
87runnable without activating it, and run with the venv's Python automatically.
88
89You can deactivate a venv by typing "deactivate" in your shell. The exact
90mechanism is platform-specific: for example, the Bash activation script defines
91a "deactivate" function, whereas on Windows there are separate scripts called
92``deactivate.bat`` and ``Deactivate.ps1`` which are installed when the venv is
93created.
94
R David Murray575fb312013-12-25 23:21:03 -050095.. versionadded:: 3.4
96 ``fish`` and ``csh`` activation scripts.