UnavailableInvalidChannel: HTTP 404 NOT FOUND for channel simple <https://pypi.tuna.tsinghua.edu.cn/simple>
时间: 2024-03-11 10:07:23 浏览: 155
HTTP 错误信息提示
这个错误通常是由于指定的镜像源不存在或无法访问。你可以尝试更换其他镜像源,如清华镜像源、阿里云镜像源等。
以清华镜像源为例,你可以使用以下命令来指定清华镜像源:
```
conda config --add channels https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free/
conda config --add channels https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/main/
conda config --set show_channel_urls yes
```
在此之后,你可以使用以下指令来安装依赖包:
```
conda install --yes --file requirements_win.txt
```
如果你依然遇到了问题,可以尝试检查网络连接或者联系镜像源的提供者。
阅读全文