Install pip3 on Ubuntu

本文章引用自: https://www.educative.io/edpresso/installing-pip3-in-ubuntu ,版权归原作者所有。

pip3 is the official package installer for Python 3. It can be used to install packages from the Python Package Index.

It is always a good idea to update before trying to install a new package. Run the command below:

sudo apt update

If Python 3 has already been installed on the system, execute the command below to install pip3:

sudo apt-get -y install python3-pip

To verify the installation, run the following command to cross check the version number:

pip3 --version