您的位置:首页 > 运维架构 > Linux

centos下安装Python包管理工具pip的方法总结

2017-07-16 22:21 791 查看
在我们安装Python后,如果未安装包管理工具pip,此时需要自己手动安装:

方式1(yum安装):
1、首先安装epel扩展源:

[root@localhost ~]#  yum -y install epel-release

如果没有安装epel扩展源而直接安装python-pip时,会出现找到该软件包的错误。

这是因为像centos这类衍生出来的发行版,他们的源有时候内容更新的比较滞后,或者说有时候一些扩展的源根本就没有。

2、安装pip

[root@localhost ~]#  yum -y install  python-pip

3、更新pip

[root@localhost ~]#  pip install --upgrade pip

4、安装后清除cache

[root@localhost ~]#  yum clean all

方式2(源码安装):
[root@localhost ~]#  wget --no-check-certificate https://github.com/pypa/pip/archive/1.5.5.tar.gz
注意:wget获取https的时候要加上:--no-check-certificate

[root@localhost ~]#  tar zvxf 1.5.5.tar.gz    #解压文件

[root@localhost pip-1.5.5]#  cd pip-1.5.5/

[root@localhost pip-1.5.5]#  python setup.py install

方式3(get-pip安装):
[root@localhost ~]#  curl https://bootstrap.pypa.io/get-pip.py | python
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签:  python centos pip get-pip