diff options
author | Jason R. Coombs <jaraco@jaraco.com> | 2014-05-13 02:40:49 (GMT) |
---|---|---|
committer | Jason R. Coombs <jaraco@jaraco.com> | 2014-05-13 02:40:49 (GMT) |
commit | 13266fb5c8e4a58c33209f8d97f86469c3245d94 (patch) | |
tree | 313b39446b568181b46a4dcdfa3e9e2dbf3511b7 /Doc/library/venv.rst | |
parent | ddf343855d787520d1ac72c7dcfdeb91e72731da (diff) | |
download | cpython-13266fb5c8e4a58c33209f8d97f86469c3245d94.zip cpython-13266fb5c8e4a58c33209f8d97f86469c3245d94.tar.gz cpython-13266fb5c8e4a58c33209f8d97f86469c3245d94.tar.bz2 |
Update docs to reflect resurrection of Setuptools over Distribute
Diffstat (limited to 'Doc/library/venv.rst')
-rw-r--r-- | Doc/library/venv.rst | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Doc/library/venv.rst b/Doc/library/venv.rst index 96ca2f5..be0cad4 100644 --- a/Doc/library/venv.rst +++ b/Doc/library/venv.rst @@ -40,11 +40,11 @@ Creating virtual environments A venv is a directory tree which contains Python executable files and other files which indicate that it is a venv. - Common installation tools such as ``Distribute`` and ``pip`` work as + 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 ``distribute_setup.py`` with the venv activated, + 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. |