conda换源命令有哪些

2023年 11月 28日 57.3k 0

conda换源命令有:1、更改conda软件源为清华大学镜像站:conda config --add channels https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free/;conda config --set show_channel_urls yes;2、更改conda软件源为中科大镜像站等等。

conda换源命令有哪些

本教程操作系统:windows10系统、Python3.11.4版本、Dell G3电脑。

常用的conda换源命令包括以下几种:

1、更改conda软件源为清华大学镜像站:

conda config --add channels https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free/

conda config --set show_channel_urls yes

2、更改conda软件源为中科大镜像站:

conda config --add channels https://mirrors.ustc.edu.cn/anaconda/pkgs/free/

conda config --set show_channel_urls yes

3、更改conda软件源为华中科技大学镜像站:

conda config --add channels https://mirrors.hust.edu.cn/anaconda/pkgs/free/

conda config --set show_channel_urls yes

4、恢复默认软件源:

conda config --remove-key channels

这些命令可以帮助你更改conda的软件源为国内的镜像站,以加快包的下载速度和提高安装效率。根据你的网络环境和需求,选择合适的镜像站并使用相应的命令来更改conda的软件源。

以上就是conda换源命令有哪些的详细内容,更多请关注每日运维网(www.mryunwei.com)其它相关文章!

相关文章

JavaScript2024新功能:Object.groupBy、正则表达式v标志
PHP trim 函数对多字节字符的使用和限制
新函数 json_validate() 、randomizer 类扩展…20 个PHP 8.3 新特性全面解析
使用HTMX为WordPress增效:如何在不使用复杂框架的情况下增强平台功能
为React 19做准备:WordPress 6.6用户指南
如何删除WordPress中的所有评论

发布评论