anaconda如果不配置国内源,在下载第三方库时,默认还是会使用官方源,就会导致时常因请求外网导致网速过慢或是链接超时,这个时候,我们就需要切换到国内源,来改善这一体验。
国内各大镜像源地址:
清华大学:https://pypi.tuna.tsinghua.edu.cn/simple
阿里云:https://mirrors.aliyun.com/pypi/simple/
中国科技大学: https://pypi.mirrors.ustc.edu.cn/simple/
华中理工大学:https://pypi.hustunique.com/
山东理工大学:https://pypi.sdutlinux.org/
豆瓣:https://pypi.douban.com/simple/
两种添加镜像源的方法:
一、命令添加
1.打开cmd窗口
2.输入命令 "conda config --show channels" , 检查当前已配置源
正常情况下,未配置过任何第三方源,都只会展示一个default
* (base)
* C:\Users\13617\conda config --show channels>
* channels:
* - defaults
3.以清华大学的镜像源为例子,输入下列命令,添加第三方源:
conda config --add channels https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/main
conda config --add channels https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/msys2
conda config --add channels https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free
4.这时,再在cmd窗口输入命令 "conda config --show channels" ,就可以看到手动添加的源了。
5.通过命令"conda config --remove channels defaults" ,可以直接删除defaults源
二、手动添加
1.在用户路径(例:C:\Users\13617\)下找到名为 ".condarc" 的文件,手动添加源地址。
例:
channels:
- https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/msys2
- https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/pro
- https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/r
- https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free
- https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/main
- defaults
2.若没有用命令添加过任何一个源,可能会找不到 ".condarc" 文件,这时可以通过命令 "conda config --set show_channel_urls yes" 直接创建文件,再手动添加。
注意:源只需要添加一次,如果本机上有多个conda虚拟环境,调用的都是同一个源地址文件,不需要切换不同环境添加。
TRANSLATE with x
English
TRANSLATE with
COPY THE URL BELOW
Back
EMBED THE SNIPPET BELOW IN YOUR SITE
Enable collaborative features and customize widget: Bing Webmaster Portal
Back
标签:cn,mirrors,配置,tsinghua,https,edu,镜像,anaconda
From: https://www.cnblogs.com/zhouchengzhi/p/18163694