@@ -6,12 +6,13 @@ command ``venv``::
66Running this command creates the target directory (creating any parent
77directories that don' t exist already) and places a ``pyvenv.cfg`` file in it
88with a ``home`` key pointing to the Python installation from which the command
9- was run. It also creates a ``bin`` (or ``Scripts`` on Windows) subdirectory
10- containing a copy/symlink of the Python binary/binaries (as appropriate for the
11- platform or arguments used at environment creation time). It also creates an
12- (initially empty) ``lib/pythonX.Y/site-packages`` subdirectory
13- (on Windows, this is ``Lib\s ite-packages``). If an existing
14- directory is specified, it will be re-used.
9+ was run (a common name for the target directory is ``.venv``). It also creates
10+ a ``bin`` (or ``Scripts`` on Windows) subdirectory containing a copy/symlink
11+ of the Python binary/binaries (as appropriate for the platform or arguments
12+ used at environment creation time). It also creates an (initially empty)
13+ ``lib/pythonX.Y/site-packages`` subdirectory (on Windows, this is
14+ ``Lib\s ite-packages``). If an existing directory is specified, it will be
15+ re-used.
1516
1617.. deprecated:: 3.6
1718 ``pyvenv`` was the recommended tool for creating virtual environments for
@@ -96,12 +97,14 @@ directory containing the virtual environment):
9697+-------------+-----------------+-----------------------------------------+
9798| Platform | Shell | Command to activate virtual environment |
9899+=============+=================+=========================================+
99- | Posix | bash/zsh | $ source <venv>/bin/activate |
100+ | POSIX | bash/zsh | $ source <venv>/bin/activate |
100101+-------------+-----------------+-----------------------------------------+
101102| | fish | $ . <venv>/bin/activate.fish |
102103+-------------+-----------------+-----------------------------------------+
103104| | csh/tcsh | $ source <venv>/bin/activate.csh |
104105+-------------+-----------------+-----------------------------------------+
106+ | | PowerShell Core | $ <venv>/bin/Activate.ps1 |
107+ +-------------+-----------------+-----------------------------------------+
105108| Windows | cmd.exe | C:\\> <venv>\\Scripts\\activate.bat |
106109+-------------+-----------------+-----------------------------------------+
107110| | PowerShell | PS C:\\> <venv>\\Scripts\\Activate.ps1 |
@@ -122,3 +125,7 @@ when the virtual environment is created.
122125
123126.. versionadded:: 3.4
124127 ``fish`` and ``csh`` activation scripts.
128+
129+ .. versionadded:: 3.8
130+ PowerShell activation scripts installed under POSIX for PowerShell Core
131+ support.
0 commit comments