win pip换源

发布时间:2024年01月20日

摘要:解决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指定的源将不再生效

参考文章:

Pip更换默认镜像源_pip 默认源-CSDN博客

解决pip速度慢的问题 - 知乎

文章来源:https://blog.csdn.net/Y__Yshans/article/details/135617794
本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。