当前位置:K88软件开发文章中心编程语言LinuxLinux01 → 文章内容

CentOS 安装pip方法

减小字体 增大字体 作者:佚名  来源:网上搜集  发布时间:2019-1-4 9:02:49

-->

CentOS安装python包管理安装工具pip的方法如下:

wget --no-check-certificate https://github.com/pypa/pip/archive/1.5.5.tar.gz

注意:wget获取https的时候要加上:–no-check-certificate

tar zvxf 1.5.5.tar.gz    #解压文件cd pip-1.5.5/python setup.py install

OK,这样就安装好pip了


CentOS 安装pip方法