xubing-613

转自https://blog.csdn.net/u014236259/article/details/75212659

在我们安装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

分类:

技术点:

相关文章:

  • 2021-07-07
  • 2021-11-22
  • 2021-07-01
  • 2021-07-13
  • 2021-11-18
  • 2021-06-29
  • 2021-11-15
猜你喜欢
  • 2022-12-23
  • 2022-02-15
  • 2021-12-31
  • 2021-06-23
  • 2021-11-19
相关资源
相似解决方案