From: Vinay Sajip Date: Sat, 7 Feb 2015 10:57:36 +0000 (+0000) Subject: Closes #23357: Updated documentation on creating venvs. X-Git-Tag: v3.5.0a1~5 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=d005090e01b46f00494f9f268b4c8dc2b28ffe2c;p=thirdparty%2FPython%2Fcpython.git Closes #23357: Updated documentation on creating venvs. --- d005090e01b46f00494f9f268b4c8dc2b28ffe2c diff --cc Doc/using/venv-create.inc index 5fc46d245beb,45bdd5a46d3e..02bcbeeb7f2b --- a/Doc/using/venv-create.inc +++ b/Doc/using/venv-create.inc @@@ -21,11 -21,11 +21,11 @@@ subdirectory (on Windows, this is ``Lib On Windows, you may have to invoke the ``pyvenv`` script as follows, if you don't have the relevant PATH and PATHEXT settings:: - c:\Temp>c:\Python33\python c:\Python33\Tools\Scripts\pyvenv.py myenv - c:\Temp>c:\Python34\python c:\Python34\Tools\Scripts\pyvenv.py myenv ++ c:\Temp>c:\Python35\python c:\Python35\Tools\Scripts\pyvenv.py myenv or equivalently:: - c:\Temp>c:\Python33\python -m venv myenv - c:\Temp>c:\Python34\python -m venv myenv ++ c:\Temp>c:\Python35\python -m venv myenv The command, if run with ``-h``, will show the available options::