Python修改pip使用国内源

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Python修改pip使用国内源相关的知识,希望对你有一定的参考价值。

使用python必然离不开pip这一强大的包管理工具.但是由于pip的官方源在国外,所以造成安装包速度要么特别慢或者根本就安装不了,所以修改python源是安装包时必备的技能


临时使用

使用阿里源安装requests
pip install requests -i https://mirrors.aliyun.com/pypi/simple

永久修改:
自动修改(推荐)

pip config set global.trusted-host mirrors.aliyun.com
pip config set global.index-url https://mirrors.aliyun.com/simple

手动修改

  • linux/mac (没有就创建一个)

    vi ~/.pip/pip.conf
    [global]
    trusted-host=mirrors.aliyun.com
    index-url=https://mirrors.aliyun.com/pypi/simple/
  • windows下,直接在user目录中创建一个pip目录,如:C:Usersxx-userpippip.ini
    [global]
    trusted-host=mirrors.aliyun.com
    index-url=https://mirrors.aliyun.com/pypi/simple/

    注意:为了一些不必要的麻烦建议把trusted-host也同步设置.

常用源:
官方 https://pypi.python.org/simple/
阿里云
http://mirrors.aliyun.com/pypi/simple/
豆瓣
http://pypi.douban.com/simple/
清华
https://pypi.tuna.tsinghua.edu.cn/simple


个人喜好,因为管理的服务器大多是阿里云,所以安装包时第一步就是先设置源为阿里,不光因为速度快,还因为走的内网不花费流量哟.

that‘s all

以上是关于Python修改pip使用国内源的主要内容,如果未能解决你的问题,请参考以下文章

pip install 加速(修改为国内源)快的起飞

Python 修改 pip 源为国内源(本地文件全局换源,Pycharm2022.1配置py仓库源)

Python 修改 pip 源为国内源(本地文件全局换源,Pycharm2022.1配置py仓库源)

【Python】 设置 pip 默认下载路径(含国内镜像源)

pip修改国内源

windows和linux修改python的pip源