diff options
| author | Berker Peksag <berker.peksag@gmail.com> | 2016-06-27 09:51:40 +0300 |
|---|---|---|
| committer | Berker Peksag <berker.peksag@gmail.com> | 2016-06-27 09:51:40 +0300 |
| commit | 9c1e9d453c9d593f25ff34c09410503a61ebe426 (patch) | |
| tree | 6038c4e7cc59ad22eb33569a5b6cfc4122b55a95 /Doc/using | |
| parent | bddc35643799f1a96693d7a26a82449749ea900d (diff) | |
| download | cpython-git-9c1e9d453c9d593f25ff34c09410503a61ebe426.tar.gz | |
Issue #27393: Fix escaping of venv activate commands on Windows
Patch by Manuel Kaufmann.
Diffstat (limited to 'Doc/using')
| -rw-r--r-- | Doc/using/venv-create.inc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Doc/using/venv-create.inc b/Doc/using/venv-create.inc index c5294786c2..c263cf741b 100644 --- a/Doc/using/venv-create.inc +++ b/Doc/using/venv-create.inc @@ -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 |
