summaryrefslogtreecommitdiffstats
path: root/Doc/library/venv.rst
diff options
context:
space:
mode:
authorBrett Cannon <brett@python.org>2016-10-21 19:53:40 (GMT)
committerBrett Cannon <brett@python.org>2016-10-21 19:53:40 (GMT)
commitf8c1505736cb6eeb264e58c28d1f94d8fe7cad34 (patch)
tree3c2015021d644029291d2f61d0e205ec98fab3cf /Doc/library/venv.rst
parent10a7dbdd5db195cd86d69654d35d40eb2c5046fe (diff)
downloadcpython-f8c1505736cb6eeb264e58c28d1f94d8fe7cad34.zip
cpython-f8c1505736cb6eeb264e58c28d1f94d8fe7cad34.tar.gz
cpython-f8c1505736cb6eeb264e58c28d1f94d8fe7cad34.tar.bz2
Issue #25152: Mention the deprecation of pyvenv
Diffstat (limited to 'Doc/library/venv.rst')
-rw-r--r--Doc/library/venv.rst6
1 files changed, 6 insertions, 0 deletions
diff --git a/Doc/library/venv.rst b/Doc/library/venv.rst
index af4a6d1..62892d4 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
-----------------------------