pip环境安装

一、Centos

yum install -y pip
或者
curl "https://bootstrap.pypa.io/get-pip.py" -o "get-pip.py"
python get-pip.py

二、Ubuntu

apt update
apt install python-pip
apt install python3-pip
pip -V
pip2 -V
pip3 -V
原文地址:https://www.cnblogs.com/dszazhy/p/15097780.html