(base) C:\Users\gnp>conda create -n pytorch_gpu python=3.8 Collecting package metadata (current_repodata.json): failed UnavailableInvalidChannel: The channel is not accessible or is invalid. channel name: pspy/simple channel url: https://mirrors.aliyun.com/pspy/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-03-15 07:43:36 浏览: 105
针对Collecting package metadata (current-repodata.json)- faile的解决
5星 · 资源好评率100%
这个错误的原因是conda无法访问指定的软件包源(psyp/simple)。你可以尝试更改软件包源,或者检查你的网络连接是否正常。
以下是一些可能的解决方法:
1. 更改软件包源:你可以使用以下命令更改软件包源为中科大镜像源:
```
conda config --add channels https://mirrors.ustc.edu.cn/anaconda/pkgs/main/
conda config --add channels https://mirrors.ustc.edu.cn/anaconda/pkgs/free/
conda config --add channels https://mirrors.ustc.edu.cn/anaconda/cloud/conda-forge/
conda config --add channels https://mirrors.ustc.edu.cn/anaconda/cloud/msys2/
conda config --set show_channel_urls yes
```
2. 检查网络连接:检查你的网络连接是否正常,并确保你可以访问指定的软件包源。
如果以上方法都不能解决问题,你可以考虑使用其他的conda软件包源,或者使用其他的Python安装程序。
阅读全文