@@ -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
@@ -101,12 +102,14 @@ directory containing the virtual environment):
101102+-------------+-----------------+-----------------------------------------+
102103| Platform | Shell | Command to activate virtual environment |
103104+=============+=================+=========================================+
104- | Posix | bash/zsh | $ source <venv>/bin/activate |
105+ | POSIX | bash/zsh | $ source <venv>/bin/activate |
105106+-------------+-----------------+-----------------------------------------+
106107| | fish | $ . <venv>/bin/activate.fish |
107108+-------------+-----------------+-----------------------------------------+
108109| | csh/tcsh | $ source <venv>/bin/activate.csh |
109110+-------------+-----------------+-----------------------------------------+
111+ | | PowerShell Core | $ <venv>/bin/Activate.ps1 |
112+ +-------------+-----------------+-----------------------------------------+
110113| Windows | cmd.exe | C:\\> <venv>\\Scripts\\activate.bat |
111114+-------------+-----------------+-----------------------------------------+
112115| | PowerShell | PS C:\\> <venv>\\Scripts\\Activate.ps1 |
@@ -127,3 +130,7 @@ when the virtual environment is created.
127130
128131.. versionadded:: 3.4
129132 ``fish`` and ``csh`` activation scripts.
133+
134+ .. versionadded:: 3.8
135+ PowerShell activation scripts installed under POSIX for PowerShell Core
136+ support.
0 commit comments