Anaconda更新问题最新处理办法CondaHTTPError && conda的environment未被激活解决方案

Anaconda使用conda连接网络出现错误
针对AnacondaConda更新问题的最新解决办法(更改镜像无效)————HTTPError: HTTP 000 CONNECTION FAILED for url
今天想要install TensorFlow的时候anaconda突然报错:CondaHTTPError: HTTP 000 CONNECTION FAILED for url。CSDN有很多帖子给出了解决办法,建议看这个原帖:原帖
BUT有的时候这个方法也不管用!
相信很多人也有这个烦恼,我按着链接搞了半个多小时也没有解决问题…
新的办法:将condarc文件中的清华tuna镜像路径改成http,而不是https!图示如下:

conda config --add channels http://mirrors.ustc.edu.cn/anaconda/pkgs/free/
conda config --add channels http://mirrors.tuna.tsinghua.edu.cn/anaconda/cloud/conda-forge/
conda config --add channels http://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free/
conda config --set show_channel_urls yes

在conda安装好之后,默认的镜像是官方的,由于官网的镜像在境外,访问太慢或者不能访问,为了能够加快访问的速度,这里选择了清华的的镜像。

在命令行中运行(设置清华的镜像)

conda config --add channels http://mirrors.ustc.edu.cn/anaconda/pkgs/free/
conda config --add channels http://mirrors.tuna.tsinghua.edu.cn/anaconda/cloud/conda-forge/
conda config --add channels http://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free/
conda config --set show_channel_urls yes

Anaconda更新失败
通过分析,问题只可能是出在default channel上面。于是索性删掉channels下面的 -defaults一行,果然更新成功了。

Anaconda更新失败

按上面的设置镜像源后需打开C:\Users\lqk.condarc这个文件删除 -defaults这一行

附上:C:\Users\lqk.condarc(路径一般为C:\Users\Lenovo.condarc)

.condarc文件里应该是下面这样的内容

channels:
  - https://mirrors.ustc.edu.cn/anaconda/pkgs/free/
  - https://mirrors.tuna.tsinghua.edu.cn/anaconda/cloud/conda-forge/
  - https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free/
show_channel_urls: true

conda的environment未被激活解决方案
在这里插入图片描述

安装anaconda 后在命令行中出现

This Python interpreter is in a conda environment, but the environment has not been activated. Libraries may fail to load. To activate this environment please see https://conda.io/activation
Anaconda更新问题最新处理办法CondaHTTPError && conda的environment未被激活解决方案_第1张图片

原因

1、出现这种错误是因为安装的是Anaconda中带的python版本,python处于conda环境中,使用python需要激活;

解决方案

2、可以在cmd中输入conda info --envs,查看Anaconda的位置,复制base后面的位置信息;
Anaconda更新问题最新处理办法CondaHTTPError && conda的environment未被激活解决方案_第2张图片
3、conda activate + base后面的路径,进行激活
在这里插入图片描述
4、激活成功。

你可能感兴趣的:(Anaconda更新问题最新处理办法CondaHTTPError && conda的environment未被激活解决方案)