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.
Installation
Step 1 - Update system
It is always a good idea to update before trying to install a new package. Run the command below:
sudo apt update
Step 2 - Install pip3
If Python 3 has already been installed on the system, execute the command below to install pip3:
sudo apt-get -y install python3-pip
Step 3 - Verification
To verify the installation, run the following command to cross check the version number:
pip3 --version