CondaSSLError——ProxyError

目录

1.我的改错历程 

2. 解决安装时的CondaSSLError问题,直接看这里


1.我的改错历程 

在安装conda install graphviz时报如下错误:
CondaSSLError——ProxyError_第1张图片

看了别人博客,做conda config --set ssl_verify False后报如下错误:
CondaSSLError——ProxyError_第2张图片 

 修改C盘下的如下文件中的内容,添加如下代码:

channels:
  - defaults
show_channel_urls: true
default_channels:
  - https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/main
  - https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/r
  - https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/msys2
custom_channels:
  conda-forge: https://mirrors.tuna.tsinghua.edu.cn/anaconda/cloud
  msys2: https://mirrors.tuna.tsinghua.edu.cn/anaconda/cloud
  bioconda: https://mirrors.tuna.tsinghua.edu.cn/anaconda/cloud
  menpo: https://mirrors.tuna.tsinghua.edu.cn/anaconda/cloud
  pytorch: https://mirrors.tuna.tsinghua.edu.cn/anaconda/cloud
  pytorch-lts: https://mirrors.tuna.tsinghua.edu.cn/anaconda/cloud
  simpleitk: https://mirrors.tuna.tsinghua.edu.cn/anaconda/cloud


CondaSSLError——ProxyError_第3张图片

在执行安装操作,conda install graphviz,又回到错误:

CondaSSLError: Encountered an SSL error. Most likely a certificate verification issue.

CondaSSLError——ProxyError_第4张图片

2. 解决安装时的CondaSSLError问题,直接看这里

打开C盘配置镜像的文件,.condarc

CondaSSLError——ProxyError_第5张图片

将里面的https全部改成http,即如下:
CondaSSLError——ProxyError_第6张图片 

此时再conda install graphviz:
CondaSSLError——ProxyError_第7张图片 win!

 

 

 

 

 

 

你可能感兴趣的:(python错误处理归纳,issue)