摘要:解决pip下载的时候比较慢的问题,做个记录
主要参考了Pip更换默认镜像源_pip 默认源-CSDN博客
感谢作者!!!
中国科学技术大学?https://mirrors.ustc.edu.cn/pypi/web/simple
清华大学?https://pypi.tuna.tsinghua.edu.cn/simple
华中科技大学?http://pypi.hustunique.com/simple
中国科学院?https://pypi.mirrors.opencas.cn/simple
阿里云?https://mirrors.aliyun.com/pypi/simple
豆瓣?https://pypi.douban.com/simple
临时使用:
pip install -i numpy https://mirrors.ustc.edu.cn/pypi/web/simple
设置为默认:
# 中国科学技术大学
pip config set global.index-url https://mirrors.ustc.edu.cn/pypi/web/simple
# 中国科学院
pip config set global.index-url https://pypi.mirrors.opencas.cn/simple
# 华中科技大学?
pip config set global.index-url http://pypi.hustunique.com/simple
配置文件方式:
在用户目录下(Unix与macOS为~/.pip,Windows为%HOME%\pip)创建pip.ini文件,内容如下:
[global]
index-url = https://mirrors.ustc.edu.cn/pypi/web/simple
其中index-url的值替换为您选择的源地址。创建完配置文件后,pip就会默认使用这个源。如果创建了配置文件,命令行参数-i
指定的源将不再生效
参考文章: