diff options
author | Éric Araujo <merwok@netwok.org> | 2011-09-12 15:34:40 (GMT) |
---|---|---|
committer | Éric Araujo <merwok@netwok.org> | 2011-09-12 15:34:40 (GMT) |
commit | faabef548dab1979759a67f482a06cdc3a153197 (patch) | |
tree | 34aecdc94718ddb6065833d9e8c882ea1c606222 /Doc | |
parent | 2d78a87e2ecb30bd22b13bd77cc58c09ac989293 (diff) | |
parent | cde65768203618f084592fa5441a4c92618ed7e4 (diff) | |
download | cpython-faabef548dab1979759a67f482a06cdc3a153197.zip cpython-faabef548dab1979759a67f482a06cdc3a153197.tar.gz cpython-faabef548dab1979759a67f482a06cdc3a153197.tar.bz2 |
Branch merge
Diffstat (limited to 'Doc')
-rw-r--r-- | Doc/install/pysetup.rst | 17 |
1 files changed, 9 insertions, 8 deletions
diff --git a/Doc/install/pysetup.rst b/Doc/install/pysetup.rst index 08ba08e..f6f1f83 100644 --- a/Doc/install/pysetup.rst +++ b/Doc/install/pysetup.rst @@ -19,13 +19,12 @@ Finding out what's installed Pysetup makes it easy to find out what Python packages are installed:: - $ pysetup search virtualenv - virtualenv 1.6 at /opt/python3.3/lib/python3.3/site-packages/virtualenv-1.6-py3.3.egg-info + $ pysetup list virtualenv + 'virtualenv' 1.6 at '/opt/python3.3/lib/python3.3/site-packages/virtualenv-1.6-py3.3.egg-info' - $ pysetup search --all - pyverify 0.8.1 at /opt/python3.3/lib/python3.3/site-packages/pyverify-0.8.1.dist-info - virtualenv 1.6 at /opt/python3.3/lib/python3.3/site-packages/virtualenv-1.6-py3.3.egg-info - wsgiref 0.1.2 at /opt/python3.3/lib/python3.3/wsgiref.egg-info + $ pysetup list + 'pyverify' 0.8.1 at '/opt/python3.3/lib/python3.3/site-packages/pyverify-0.8.1.dist-info' + 'virtualenv' 1.6 at '/opt/python3.3/lib/python3.3/site-packages/virtualenv-1.6-py3.3.egg-info' ... @@ -146,9 +145,11 @@ Getting a list of all pysetup actions and global options:: metadata: Display the metadata of a project install: Install a project remove: Remove a project - search: Search for a project + search: Search for a project in the indexes + list: List installed projects graph: Display a graph - create: Create a Project + create: Create a project + generate-setup: Generate a backward-comptatible setup.py To get more help on an action, use: |