Software:Pip (package manager)

From HandWiki
Short description: Package management system for Python


pip
Pip help.png
An output of pip --help
Original author(s)Ian Bicking
Initial release4 April 2011 (12 years ago) (2011-04-04)[1]
Written inPython
Operating systemOS-independent
PlatformPython
TypePackage management system
LicenseMIT[2]
Websitepip.pypa.io

pip (also known by Python 3's alias pip3) is a package-management system written in Python and is used to install and manage software packages.[3] The Python Software Foundation recommends using pip for installing Python applications and its dependencies during deployment.[4] Pip connects to an online repository of public packages, called the Python Package Index. Pip can be configured to connect to other package repositories (local or remote), provided that they comply to Python Enhancement Proposal 503.[5][6]

Most distributions of Python come with pip preinstalled. Python 2.7.9 and later (on the python2 series), and Python 3.4 and later include pip by default.[7]

History

First introduced as pyinstall in 2008 by Ian Bicking (the creator of the virtualenv package) as an alternative to easy install,[8][9] pip was chosen as the new name from one of several suggestions that the creator received on his blog post.[10] According to Bicking himself, the name is a recursive acronym for "Pip Installs Packages".[11] In 2011, the Python Packaging Authority (PyPA) was created to take over the maintenance of pip and virtualenv from Bicking, led by Carl Meyer, Brian Rosner, and Jannis Leidel.[9]

With the release of pip version 6.0 (2014-12-22), the version naming process was changed to have version in X.Y format and drop the preceding 1 from the version label.[12]

Command-line interface

An output of pip install virtualenv

Pip's command-line interface allows the install of Python software packages by issuing a command: pip install some-package-name

Users can also remove the package by issuing a command: pip uninstall some-package-name

pip has a feature to manage full lists of packages and corresponding version numbers, possible through a "requirements" file.[13] This permits the efficient re-creation of an entire group of packages in a separate environment (e.g. another computer) or virtual environment. This can be achieved with a properly formatted file and the following command,[14] where requirements.txt is the name of the file: pip install -r requirements.txt.

To install some package for a specific python version, pip provides the following command, where ${version} is replaced by 2, 3, 3.4, etc.: pip${version} install some-package-name.

Using setup.py

Pip provides a way to install user-defined projects locally with the use of setup.py file. This method requires the python project to have the following file structure:

example_project/
├── exampleproject/      Python package with source code.
|    ├── __init__.py     Make the folder a package.
|    └── example.py      Example module.
└── README.md            README with info of the project.

Within this structure, user can add setup.py to the root of the project (i.e. example_project for above structure) with the following content:

from setuptools import setup, find_packages

setup(
    name='example',  # Name of the package. This will be used, when the project is imported as a package.
    version='0.1.0',
    packages=find_packages(include=['exampleproject', 'exampleproject.*'])  # Pip will automatically install the dependencies provided here.
)

After this, pip can install this custom project by running the following command, from the project root directory: pip install -e.

Custom repository

Besides the default PyPI repository, Pip supports custom repositories as well.[15] Such repositories can be located on an HTTP(s) URL or on a file system location.

A custom repository can be specified using the -i or—index-url option, like so: pip install -i https://your-custom-repo/simple <package name>; or with a filesystem: pip install -i /path/to/your/custom-repo/simple <package name>.

See also

References

  1. "Release 1.0". https://github.com/pypa/pip/releases/tag/1.0. 
  2. "pip/LICENSE.txt". 17 April 2018. Archived from the original on 1 June 2018. https://web.archive.org/web/20180601113651/https://github.com/pypa/pip/blob/master/LICENSE.txt. Retrieved 1 June 2018. 
  3. Kollár, László. "Managing Python packages the right way" (in en). Red Hat. https://opensource.com/article/19/4/managing-python-packages. Retrieved 23 June 2019. 
  4. "Tool recommendations — Python Packaging User Guide". https://packaging.python.org/en/latest/guides/tool-recommendations/. 
  5. "Python Enhancement Proposal 503". https://www.python.org/dev/peps/pep-0503. 
  6. "pip install command line documentation". https://pip.pypa.io/en/stable/cli/pip_install/#cmdoption-0. 
  7. "pip installation". https://pip.pypa.io/en/latest/installing.html. Retrieved 24 Feb 2015. 
  8. Bicking, Ian (24 September 2008). "pyinstall: A New Hope". http://www.openplans.org/projects/topp-engineering/blog/2008/09/24/pyinstall-a-new-hope/. Retrieved 4 March 2020. 
  9. 9.0 9.1 "Packaging History". https://www.pypa.io/en/latest/history/. Retrieved 4 March 2020. 
  10. Bicking, Ian (1 October 2008). "pyinstall pybundles". https://www.ianbicking.org/blog/2008/10/pyinstall-pybundles.html. Retrieved 24 November 2021. 
  11. Bicking, Ian (28 October 2008). "pyinstall is dead, long live pip!". https://www.ianbicking.org/blog/2008/10/pyinstall-is-dead-long-live-pip.html. Retrieved 24 November 2021. 
  12. "Changelog - pip documentation v22.3.1". https://pip.pypa.io/en/stable/news/#id443. 
  13. "pip documentation". The pip developers. http://www.pip-installer.org/. Retrieved 5 January 2012. 
  14. Gahlot, Gaurav (6 November 2018). "Most Important pip Commands for a Python Developer - DZone Open Source" (in en). https://dzone.com/articles/most-important-quotpipquot-commands-for-a-python-d. Retrieved 23 June 2019. 
  15. "Custom repository with pip install -i". https://python.land/virtual-environments/installing-packages-with-pip#Custom_repository_with_pip_install_-i. Retrieved 12 Jan 2022. 

External links