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)保存配置文件文章来源:https://www.toymoban.com/news/detail-429358.html
保存修改后的配置文件即可,pip 下载包时将使用你设置的默认源。文章来源地址https://www.toymoban.com/news/detail-429358.html
到了这里,关于python pip 下载默认源更改(Windows)的文章就介绍完了。如果您还想了解更多内容,请在右上角搜索TOY模板网以前的文章或继续浏览下面的相关文章,希望大家以后多多支持TOY模板网!