diff options
author | Berker Peksag <berker.peksag@gmail.com> | 2016-03-07 16:51:06 (GMT) |
---|---|---|
committer | Berker Peksag <berker.peksag@gmail.com> | 2016-03-07 16:51:06 (GMT) |
commit | 5b96d66ac6c559d9ce83235d295262430234888c (patch) | |
tree | 645699fbc4defd3a07ecd269237e463590c94b82 /Doc | |
parent | 20b3e72b8df89aedcbaa17c4920da2f670ee1d84 (diff) | |
parent | 777d639a923786c8ea3c527e29fcba00e764c054 (diff) | |
download | cpython-5b96d66ac6c559d9ce83235d295262430234888c.zip cpython-5b96d66ac6c559d9ce83235d295262430234888c.tar.gz cpython-5b96d66ac6c559d9ce83235d295262430234888c.tar.bz2 |
Issue #21034: Remove outdated paragraph from venv documentation
Since Python 3.4, there is no need to install pip and setuptools
into a venv manually.
Diffstat (limited to 'Doc')
-rw-r--r-- | Doc/library/venv.rst | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/Doc/library/venv.rst b/Doc/library/venv.rst index e9ede8b..acd1443 100644 --- a/Doc/library/venv.rst +++ b/Doc/library/venv.rst @@ -43,11 +43,6 @@ Creating virtual environments Common installation tools such as ``Setuptools`` and ``pip`` work as expected with venvs - i.e. when a venv is active, they install Python packages into the venv without needing to be told to do so explicitly. - Of course, you need to install them into the venv first: this could be - done by running ``ez_setup.py`` with the venv activated, - followed by running ``easy_install pip``. Alternatively, you could download - the source tarballs and run ``python setup.py install`` after unpacking, - with the venv activated. When a venv is active (i.e. the venv's Python interpreter is running), the attributes :attr:`sys.prefix` and :attr:`sys.exec_prefix` point to the base |