pip/docs/index.txt

55 lines
1.3 KiB
Plaintext
Raw Normal View History

pip
===
2008-10-16 00:02:57 +02:00
`pip` is a tool for installing and managing Python packages, such as
those found in the `Python Package Index`_. It's a replacement for
easy_install_.
::
$ pip install simplejson
[... progress report ...]
Successfully installed simplejson
.. _`Python Package Index`: http://pypi.python.org/pypi
.. _easy_install: http://peak.telecommunity.com/DevCenter/EasyInstall
Upgrading a package::
$ pip install --upgrade simplejson
[... progress report ...]
Successfully installed simplejson
Removing a package::
$ pip uninstall simplejson
Uninstalling simplejson:
/home/me/env/lib/python2.7/site-packages/simplejson
/home/me/env/lib/python2.7/site-packages/simplejson-2.2.1-py2.7.egg-info
Proceed (y/n)? y
Successfully uninstalled simplejson
.. comment: split here
2008-10-16 00:02:57 +02:00
.. toctree::
:maxdepth: 2
2008-10-16 00:02:57 +02:00
2011-03-15 06:43:03 +01:00
installing
usage
requirements
configuration
other-tools
contributing
news
glossary
2008-10-16 00:02:57 +02:00
.. comment: split here
Community
---------
The homepage for pip is at `pip-installer.org <http://www.pip-installer.org/>`_.
Bugs can be filed in the `pip issue tracker
<https://github.com/pypa/pip/issues/>`_. Discussion happens on the
2009-01-21 19:12:04 +01:00
`virtualenv email group
2008-10-16 00:02:57 +02:00
<http://groups.google.com/group/python-virtualenv?hl=en>`_.