Centos 7 - Anaconda3 安装教程及报错集锦

序言

这里笔者下载清华镜像,总会有问题,例如 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初始化有文件损坏造成的。


参考链接

1. centos7安装miniconda3

2. centos7安装anaconda3

3. 已经安装wget 仍提示-bash: wget: command not found的快速解决

你可能感兴趣的:(虚拟环境,centos,linux,运维,conda)