conda无法访问清华源

UnavailableInvalidChannel: The channel is not accessible or is invalid.

    • 问题描述
    • 原因
    • 解决办法

问题描述

今天用 conda create -n tensorflow python=3.6 安装 TensorFlow 失败,报错如下:

Collecting package metadata: failed

UnavailableInvalidChannel: The channel is not accessible or is invalid.
channel name: anaconda/pkgs/free
channel url: https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free
error code: 404

You will need to adjust your conda configuration to proceed.
Use ‘conda config --show channels’ to view your configuration’s current state,
and use ‘conda config --show-sources’ to view config file locations.

如图所示:
conda无法访问清华源_第1张图片

原因

我的清华源配置没有问题,前几天还用conda的清华源下载了python的第三方包,不知道为什么出现了这个问题。重新配置了下还是没有解决。网上查了查才知道清华大学在一个一个月前就停止了Anaconda镜像服务的通知,一个月后(2019.05.16)便彻底关闭了Anaconda镜像的文件下载,清华源官网通知如下:
conda无法访问清华源_第2张图片
本想着清华源用不了就用中科大的镜像,结果发现中科大的Anaconda镜像也关停了。

解决办法

1、换回conda默认的源,访问起来可能有些慢,但总比无法访问好。

conda config --remove-key channels

2、使用pip安装python的第三方包。

你可能感兴趣的:(Python开发)