pip/docs/index.txt

43 lines
1.2 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 <http://pypi.python.org/pypi>`_.
pip is a replacement for `easy_install
<http://peak.telecommunity.com/DevCenter/EasyInstall>`_. It mostly
uses the same techniques for finding packages, so packages that are
easy_installable should be pip-installable as well. This means that
you can use ``pip install SomePackage`` instead of ``easy_install
SomePackage``.
In order to use pip, you must first install `setuptools
<http://pypi.python.org/pypi/setuptools>`_ or `distribute
2011-05-01 19:53:35 +02:00
<http://pypi.python.org/pypi/distribute>`_. If you use `virtualenv
<http://www.virtualenv.org>`_, a copy of pip will be automatically be
installed in each virtual environment you create.
.. comment: split here
2008-10-16 00:02:57 +02:00
.. toctree::
2009-10-25 02:25:13 +01:00
:maxdepth: 1
2008-10-16 00:02:57 +02:00
news
2011-03-15 06:43:03 +01:00
installing
usage
requirements
configuration
other-tools
contributing
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>`_.