The Python package installer https://pip.pypa.io/
Go to file
Chris Hunt ceaf75b9ed Put Temp on RAM Disk for Azure Pipelines tests
Profiling on Azure Pipelines indicates that the majority of our time is
spent waiting for filesystem operations to complete. As a quick way to
improve our test speed in this area, we can do operations on a RAM disk
instead of the default SSDs.
2019-10-28 22:50:37 -04:00
.azure-pipelines Put Temp on RAM Disk for Azure Pipelines tests 2019-10-28 22:50:37 -04:00
.github Use python-version instead of deprecated version 2019-10-12 14:25:40 +02:00
docs Merge pull request #7241 from xavfernandez/update_release_doc 2019-10-20 09:16:40 -04:00
news Mark as trivial change 2019-10-24 12:01:36 +01:00
src/pip Merge pull request #7258 from takluyver/use-user-site-int 2019-10-27 19:15:04 +05:30
tasks Enable isort in pre-commit 2019-09-24 18:03:22 +05:30
tests Merge pull request #7258 from takluyver/use-user-site-int 2019-10-27 19:15:04 +05:30
tools Fix contextlib2 vendoring 2019-10-09 22:45:19 +02:00
.appveyor.yml Revert "Ignore new warnings traced on tox invocation." (#6812) 2019-07-30 13:41:49 +05:30
.coveragerc Add a coverage job for Python 3 to tox 2017-11-14 12:03:01 +05:30
.gitattributes The CA Bundle should always use Unix line endings 2018-03-31 14:45:01 -04:00
.gitignore Use nox for release tasks 2019-09-09 10:02:28 +05:30
.mailmap Update mailmap and regenerate authors 2018-11-02 12:26:33 -07:00
.pre-commit-config.yaml Add release target 2019-10-14 14:23:00 +02:00
.readthedocs.yml Add correct builder to ReadTheDocs configuration 2019-08-05 18:09:07 +05:30
.travis.yml Add vendoring target to heck that vendoring is up-to-date 2019-10-10 10:29:34 +02:00
AUTHORS.txt Updating AUTHORS.txt 2019-10-14 14:24:27 +02:00
LICENSE.txt Update license year to 2019 2019-01-20 00:04:56 +05:30
MANIFEST.in Exclude .pre-commit-config.yaml from distributions 2019-09-24 18:23:42 +05:30
NEWS.rst Release 19.3.1 2019-10-17 21:32:34 +02:00
README.rst Document the release cadence in README 2019-06-12 04:46:03 +05:30
noxfile.py Merge pull request #7191 from qiell/fix/update-shutil-remove-to-rmtree 2019-10-15 12:31:20 +05:30
pyproject.toml Validate NEWS files with rstcheck. 2019-09-16 20:52:46 -04:00
setup.cfg add per-file disallow_untyped_defs=False, and set it to True globally 2019-09-29 23:31:15 +02:00
setup.py Merge pull request #7219 from hugovk/add-3.8 2019-10-17 21:30:58 +02:00
tox.ini Add vendoring target to heck that vendoring is up-to-date 2019-10-10 10:29:34 +02:00

README.rst

pip - The Python Package Installer
==================================

.. image:: https://img.shields.io/pypi/v/pip.svg
   :target: https://pypi.org/project/pip/

.. image:: https://readthedocs.org/projects/pip/badge/?version=latest
   :target: https://pip.pypa.io/en/latest

pip is the `package installer`_ for Python. You can use pip to install packages from the `Python Package Index`_ and other indexes.

Please take a look at our documentation for how to install and use pip:

* `Installation`_
* `Usage`_

Updates are released regularly, with a new version every 3 months. More details can be found in our documentation:

* `Release notes`_
* `Release process`_

If you find bugs, need help, or want to talk to the developers please use our mailing lists or chat rooms:

* `Issue tracking`_
* `Discourse channel`_
* `User IRC`_

If you want to get involved head over to GitHub to get the source code, look at our development documentation and feel free to jump on the developer mailing lists and chat rooms:

* `GitHub page`_
* `Dev documentation`_
* `Dev mailing list`_
* `Dev IRC`_

Code of Conduct
---------------

Everyone interacting in the pip project's codebases, issue trackers, chat
rooms, and mailing lists is expected to follow the `PyPA Code of Conduct`_.

.. _package installer: https://packaging.python.org/en/latest/current/
.. _Python Package Index: https://pypi.org
.. _Installation: https://pip.pypa.io/en/stable/installing.html
.. _Usage: https://pip.pypa.io/en/stable/
.. _Release notes: https://pip.pypa.io/en/stable/news.html
.. _Release process: https://pip.pypa.io/en/latest/development/release-process/
.. _GitHub page: https://github.com/pypa/pip
.. _Dev documentation: https://pip.pypa.io/en/latest/development
.. _Issue tracking: https://github.com/pypa/pip/issues
.. _Discourse channel: https://discuss.python.org/c/packaging
.. _Dev mailing list: https://groups.google.com/forum/#!forum/pypa-dev
.. _User IRC: https://webchat.freenode.net/?channels=%23pypa
.. _Dev IRC: https://webchat.freenode.net/?channels=%23pypa-dev
.. _PyPA Code of Conduct: https://www.pypa.io/en/latest/code-of-conduct/