Collecting package metadata (current_repodata.json): failed UnavailableInvalidChannel: The channel is not accessible or is invalid. channel name: pypi/simple channel url: https://mirrors.aliyun.com/pypi/simple 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.
时间: 2024-04-06 22:33:47 浏览: 203
针对Collecting package metadata (current-repodata.json)- faile的解决
5星 · 资源好评率100%
这个错误提示是因为你的conda配置中使用了无效的pypi/simple镜像地址导致的。你可以尝试以下几种方法解决这个问题:
1. 修改conda配置:使用命令`conda config --remove channels https://mirrors.aliyun.com/pypi/simple`删除无效的镜像地址。
2. 更新conda:使用命令`conda update conda`更新conda到最新版本。
3. 使用清华镜像:在conda配置中添加清华镜像地址,使用命令`conda config --add channels https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free/`添加镜像。
以上方法中,第三种方法可能是最有效的,因为清华镜像是一个稳定可靠的镜像源。
阅读全文