diff options
author | Senthil Kumaran <senthil@uthcode.com> | 2016-05-18 03:50:43 (GMT) |
---|---|---|
committer | Senthil Kumaran <senthil@uthcode.com> | 2016-05-18 03:50:43 (GMT) |
commit | c9bfc13aa9965dd717ad1f647cdea62f4b2c8112 (patch) | |
tree | a94a349f9c48bbbd4a7eaa0cfab926c898bea40a /Doc/using/venv-create.inc | |
parent | 092473eef9873af210642497b148aa623c546e72 (diff) | |
download | cpython-c9bfc13aa9965dd717ad1f647cdea62f4b2c8112.zip cpython-c9bfc13aa9965dd717ad1f647cdea62f4b2c8112.tar.gz cpython-c9bfc13aa9965dd717ad1f647cdea62f4b2c8112.tar.bz2 |
issue27045 - Use backslash in windows path to script file.
Diffstat (limited to 'Doc/using/venv-create.inc')
-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 3928f33..c529478 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 |