解决conda create速度过慢的问题
问题
构建了docker容器 想在容器中创建conda环境,但是conda create的时候速度一直很慢
解决办法
宿主机安装的是anaconda 能正常conda create,容器里安装的是miniforge conda create的时候速度一直很慢,因为容器和宿主机共享网络了,宿主机开了代理,只需要:
auto_activate_base: false
ssl_verify: true
channels:
- defaults
- https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/main/
- https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free/
show_channel_urls: true
proxy_servers:
http: http://127.0.0.1:7890
https: http://127.0.0.1:7890
注意:7890是端口号,需要根据实际情况更改
如果不是因为宿主机代理问题,尝试使用国内镜像源:
conda create -n [env-name] python=xxx -c https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free/
原文地址:https://blog.csdn.net/Ivy_Hu677/article/details/145205642
免责声明:本站文章内容转载自网络资源,如本站内容侵犯了原著者的合法权益,可联系本站删除。更多内容请关注自学内容网(zxcms.com)!