diff options
| author | Brett Cannon <brett@python.org> | 2016-10-21 19:54:31 (GMT) |
|---|---|---|
| committer | Brett Cannon <brett@python.org> | 2016-10-21 19:54:31 (GMT) |
| commit | 1f489a3a332a26a718907558f1d7504db72da09c (patch) | |
| tree | 179166fc2f98123415084042c11d74192c7b9e84 | |
| parent | ee406e91675afdc439f2280bb8f9fbf8c3347a5f (diff) | |
| parent | 68adfa3b3e59a6b0162ae4fb375c0ce987e51174 (diff) | |
| download | cpython-1f489a3a332a26a718907558f1d7504db72da09c.zip cpython-1f489a3a332a26a718907558f1d7504db72da09c.tar.gz cpython-1f489a3a332a26a718907558f1d7504db72da09c.tar.bz2 | |
Merge (issue #25152)
| -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 ----------------------------- |
