欢迎来到李先生的博客

深山的鹿,不知归处;万般皆苦,只可自渡。
扩大
缩小

Centos7安装pip或pip3

 

1、使用Python2安装pip

wget wget --no-check-certificate https://pypi.python.org/packages/source/p/pip/pip-8.0.2.tar.gz#md5=3a73c4188f8dbad6a1e6f6d44d117eeb 
tar -zxvf pip-8.0.2.tar.gz 
cd pip-8.0.2
python setup.py build
python setup.py install

 

2、使用Python3安装pip3

wget wget --no-check-certificate https://pypi.python.org/packages/source/p/pip/pip-8.0.2.tar.gz#md5=3a73c4188f8dbad6a1e6f6d44d117eeb 
tar -zxvf pip-8.0.2.tar.gz 
cd pip-8.0.2
python3 setup.py build
python3 setup.py install

 

posted on 2019-11-11 15:42  Captain_Li  阅读(10423)  评论(0编辑  收藏  举报

导航