diff options
author | Brett Cannon <brett@python.org> | 2016-10-21 19:54:02 (GMT) |
---|---|---|
committer | Brett Cannon <brett@python.org> | 2016-10-21 19:54:02 (GMT) |
commit | 68adfa3b3e59a6b0162ae4fb375c0ce987e51174 (patch) | |
tree | 87a9ddf6739d9ac26aa9390384f4d2ff3dcee156 /Doc/library/venv.rst | |
parent | eb7ebd3d345dbc11b081b76b1ed10b00bb228c9a (diff) | |
parent | f8c1505736cb6eeb264e58c28d1f94d8fe7cad34 (diff) | |
download | cpython-68adfa3b3e59a6b0162ae4fb375c0ce987e51174.zip cpython-68adfa3b3e59a6b0162ae4fb375c0ce987e51174.tar.gz cpython-68adfa3b3e59a6b0162ae4fb375c0ce987e51174.tar.bz2 |
Merge (issue #25152)
Diffstat (limited to 'Doc/library/venv.rst')
-rw-r--r-- | Doc/library/venv.rst | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/Doc/library/venv.rst b/Doc/library/venv.rst index 6bf26ff..a80d2d6 100644 --- a/Doc/library/venv.rst +++ b/Doc/library/venv.rst @@ -23,6 +23,12 @@ independent set of installed Python packages in its site directories. See :pep:`405` for more information about Python virtual environments. +.. note:: + The `pyvenv` script has been deprecated as of Python 3.6 in favor of using + ``python3 -m venv`` to help prevent any potential confusion as to which + Python interpreter a virtual environment will be based on. + + Creating virtual environments ----------------------------- |