序言
这里笔者下载清华镜像,总会有问题,例如 wget 下载报错 安全证书什么的,就算解决证书问题,还不能下载,直接报错 Forbidden 403 ,但是中科大镜像就不会。
中科大镜像
1、报错 WARNING: cannot verify mirrors.tuna.tsinghua.edu.cn’s certificate, issued by ‘/C=US/O=Let’s Encrypt/CN=R3’: Issued certificate has expired. HTTP request sent, awaiting response… 403 Forbidden
这里笔者用到了 清华镜像使用 wget 下载镜像文件来安装 anaconda3,却无法下载该安装文件,即使是修改安全证书也没用,什么 https
修改为 http
也根本没用。最后换成 中科大镜像下载 anaconda3 安装镜像,就可以下载镜像文件了。
Linux环境下Anaconda安装出现报错“cannot verify mirrors.tsinghua.edu.cn‘s certificate”。【已解决】【无原理】
linux wget 下载文件 报错 To connect to xxxx, use ‘–no-check-certificate’ 解决方法
无法验证 mirrors.tuna.tsinghua.edu.cn 的由 “CN=R3,O=Let‘s Encrypt,C=US” 颁发的证书: 颁发的证书已经过期
2、安装anaconda3镜像文件时报错 mkdir: cannot create directory xxx
原因:
Linux 服务器硬盘空间不够
3、报错 -bash: wget: command not found
可以重装 wget 工具:
卸载 wget 工具
yum remove wget
下载 wget 工具
yum -y install wget
最后尝试 wget “url” 又OK了,一般是原来的wget初始化有文件损坏造成的。
小问题:安装完成后会每次都会自动激活 base 虚拟环境
在终端中使用以下命令进行检查:
conda config --show | grep auto_activate_base
显示为True。
设置为False:
conda config --set auto_activate_base False
去除终端命令前(base)成功。
重启一下终端,就可以看到效果了。
参考链接
1. centos7安装miniconda3
2. centos7安装anaconda3
3. 已经安装wget 仍提示-bash: wget: command not found的快速解决文章来源:https://www.toymoban.com/news/detail-619816.html
4. 如何去掉安装conda后在终端命令前出现的(base)文章来源地址https://www.toymoban.com/news/detail-619816.html
到了这里,关于Centos 7 - Anaconda3 安装教程及报错集锦 - 取消自动激活 base 环境方法的文章就介绍完了。如果您还想了解更多内容,请在右上角搜索TOY模板网以前的文章或继续浏览下面的相关文章,希望大家以后多多支持TOY模板网!