pip is a package manager for Python. This means that it is a tool that allows you to install and manage other libraries and dependencies that are not part of the standard library.
Package management is extremely important, so since Python3 version 3.4 and Python2 version 2.7.9, pip has been directly included in the installation package of Python, and is also used in other Python projects, which makes pip become every A necessary tool for Pythonista (Python users).
Install the package using pip
Python is considered a "battery built-in" language. This means that the Python standard library contains a large number of packages and modules, which help developers develop scripts and applications.
At the same time, Python has an active community, which provides a larger collection of packages for your development needs. These packages are published in the Python Package Index, also known as PyPI (pronounced Pie Pea Eye). PyPI hosts a large number of packages, including development frameworks, tools and libraries.
Basic knowledge points about pip:
What is pip? pip is the standard library manager in Python. It allows you to install and manage other packages that are not part of the Python standard library.
Install other packages not included in the standard distribution of Python
Find packages published in the Python Package Index (PyPI)
Manage installation requirements for scripts and applications
Uninstall the package and its related dependencies
As you can see, the Python community is very active and has created some concise alternatives to pip, which you can see later in this tutorial.
Getting started with pip
So, what is pip? pip is a package manager for Python. This means that it is a tool that allows you to install and manage other libraries and dependencies that are not part of the standard library.
Package management is extremely important, so since Python3 version 3.4 and Python2 version 2.7.9, pip has been directly included in the installation package of Python, and is also used in other Python projects, which makes pip become every A necessary tool for Pythonista (Python users).
If you already know other languages, you may be familiar with the concept of package managers. JavaScript uses npm to manage packages, Ruby uses gems, and .NET uses NuGet. In Python, pip is the standard package manager.
So far, this article about the use of python's pip is introduced here. For more information about what python's pip does, please search for ZaLou.Cn's previous articles or continue to browse related articles below. Hope you will support more in the future ZaLou.Cn!
Recommended Posts