如何在 Windows 中更改 Python pip 的默认下载源

Python常用国内pip镜像源:

阿里云:https://mirrors.aliyun.com/pypi/simple/

百度: https://mirror.baidu.com/pypi/simple/

清华:https://pypi.tuna.tsinghua.edu.cn/simple/

中科大: https://pypi.mirrors.ustc.edu.cn/simple/

豆瓣:http://pypi.douban.com/simple/

搜狐:http://mirrors.sohu.com/Python/

一、临时设置:

在使用 pip 安装包时,加上 -i 参数指定安装源即可,例如:

pip install -i https://mirrors.aliyun.com/pypi/simple/ numpy #这条命令将使用阿里云 PyPI 镜像安装 numpy 包

二、永久设置:

可以按照以下步骤进行操作:

(1)找到 pip 的配置文件

在命令行中输入以下命令即可:pip config –edit

或手动打开文件进行编辑:在 Windows 上,pip 的配置文件一般位于 C:\Users\用户名\AppData\Roaming\pip\pip.ini

(2)添加软件源

在打开的配置文件中添加以下内容:

[global]
index-url = https://mirrors.aliyun.com/pypi/simple/
[install]
trusted-host=mirrors.aliyun.com

(3)保存配置文件

保存修改后的配置文件即可,pip 下载包时将使用你设置的默认源。

物联沃分享整理
物联沃-IOTWORD物联网 » 如何在 Windows 中更改 Python pip 的默认下载源

发表评论