From: Brett Cannon Date: Fri, 21 Oct 2016 19:53:40 +0000 (-0700) Subject: Issue #25152: Mention the deprecation of pyvenv X-Git-Tag: v3.6.0b3~82^2 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=f8c1505736cb6eeb264e58c28d1f94d8fe7cad34;p=thirdparty%2FPython%2Fcpython.git Issue #25152: Mention the deprecation of pyvenv --- diff --git a/Doc/library/venv.rst b/Doc/library/venv.rst index af4a6d1ab409..62892d402707 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 -----------------------------