Python - PIP

Python

Share
python logo

In this tutorial we will learn about PIP a package management system for Python.

What is PIP?

PIP is a package management system for Python. It helps us to find packages and install them in our Python projects with ease.

PIP is a recursive acronym and it stands for PIP Installs Packages.

You can find PIP on PyPI (Python Package Index). Project Link.

Install PIP

If you are using Python v3.4 or above then you already have PIP installed.

If you want to install the latest version then head over to pypi.org and get the latest version of PIP.

Version of PIP

Type the following command in the terminal to check the version of PIP installed on your computer.

$ pip --version

Upgrade PIP

To upgrade PIP we use the --upgrade option.

In the following example we are upgrading PIP to the latest version.

$ pip install --upgrade pip

Install package using PIP

To install any package we run the pip install command.

In the following example we are installing MySQL Connector for Python package using PIP.

$ pip install mysql-connector-python

Uninstall package using PIP

To uninstall package using PIP we have to run the following command pip uninstall.

In the following example we are uninstalling mysql-connector-python package using PIP.

$ pip uninstall mysql-connector-python

List packages using PIP

To list the packages we use the pip list command.

In the following example we are listing all the packages installed in a project.

$ pip list
Package                Version
---------------------- -------
Click                  7.0    
greetings              0.1.0  
mysql-connector-python 8.0.13 
pip                    18.1   
protobuf               3.6.1  
setuptools             39.1.0 
six                    1.11.0
Share