mirror of
https://github.com/python/cpython.git
synced 2025-08-03 16:39:00 +00:00
Issue #27393: Fix escaping of venv activate commands on Windows
Patch by Manuel Kaufmann.
This commit is contained in:
parent
bddc356437
commit
9c1e9d453c
1 changed files with 2 additions and 2 deletions
|
@ -89,9 +89,9 @@ venv's binary directory. The invocation of the script is platform-specific:
|
|||
+-------------+-----------------+-----------------------------------------+
|
||||
| | csh/tcsh | $ source <venv>/bin/activate.csh |
|
||||
+-------------+-----------------+-----------------------------------------+
|
||||
| Windows | cmd.exe | C:\> <venv>\Scripts\activate.bat |
|
||||
| Windows | cmd.exe | C:\> <venv>\\Scripts\\activate.bat |
|
||||
+-------------+-----------------+-----------------------------------------+
|
||||
| | PowerShell | PS C:\> <venv>\Scripts\Activate.ps1 |
|
||||
| | PowerShell | PS C:\> <venv>\\Scripts\\Activate.ps1 |
|
||||
+-------------+-----------------+-----------------------------------------+
|
||||
|
||||
You don't specifically *need* to activate an environment; activation just
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue