国内镜像源

Posted edith-rdj1293

tags:

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

pip国内的一些镜像

(1)阿里云 http://mirrors.aliyun.com/pypi/simple/
(2)豆瓣 http://pypi.douban.com/simple/
(3)清华大学 https://pypi.tuna.tsinghua.edu.cn/simple/  (推荐)
(4)中国科学技术大学 http://pypi.mirrors.ustc.edu.cn/simple/
(5)华中科技大学 http://pypi.hustunique.com/

 

修改源方法:

临时使用: 
可以在使用pip的时候在后面加上-i参数,指定pip源 
eg: pip install scrapy -i https://pypi.tuna.tsinghua.edu.cn/simple

 

永久修改: 
linux: 
修改 ~/.pip/pip.conf (没有就创建一个), 内容如下:

[global]
index-url = https://pypi.tuna.tsinghua.edu.cn/simple

windows:
win+R 打开用户目录%HOMEPATH%,在此目录下创建 pip 文件夹,在 pip 目录下创建 pip.ini 文件, 内容如下:

[global]
timeout = 6000
index-url = https://pypi.tuna.tsinghua.edu.cn/simple
trusted-host = pypi.tuna.tsinghua.edu.cn

配置成功:跳转到CMD(命令行)运行pip install xxx即可。

以上是关于国内镜像源的主要内容,如果未能解决你的问题,请参考以下文章

ChatGPT国内镜像站初体验:聊天Python代码生成等

conda换源,切换国内源

Composer 更换为国内镜像源(Packagist 镜像)

Maven仓库国内镜像站

国内有 Docker 仓库吗

Rust crates源国内加速镜像配置说明