How to install Python PIP in Ubuntu 20.04

What is PIP?

PIP is a package management system. It is used for installing and managing software packages that written in Python language.

How to install PIP in Ubuntu 20.04?

sudo apt update

Install PIP/PIP2 

sudo apt install python-pip

Verify version

pip -V

Install PIP3 

sudo apt install python3-pip

Verify version 

pip3 -V

Leave a Reply