zhmg23

我们是如此的不同

Linux下安装pip及升级方法

方法一:

下载安装

https://files.pythonhosted.org/packages/ae/e8/2340d46ecadb1692a1e455f13f75e596d4eab3d11a57446f08259dee8f02/pip-10.0.1.tar.gz

   

方法二:   

curl "https://bootstrap.pypa.io/get-pip.py" -o "get-pip.py"   

python get-pip.py   

    

方法三:

wget https://dl.fedoraproject.org/pub/epel/epel-release-latest-7.noarch.rpm

yum install ./epel-release-latest-*.noarch.rpm

yum -y install python-pip



 升级方法

pip install --upgrade pip    

       


评论(2)