conda安装报错Collecting package metadata (current_repodata.json): failed

conda安装报错

使用conda安装pytorch的时候报错了:Collecting package metadata (current_repodata.json): failed
找了一些博客,说问题的原因是需要更换一下conda源,试了很久,但是问题并没有解决。
最后,我发现是我开了VPN!关了就好了。然后我反应过来我之前使用pip也碰到过这种问题,浪费了很多时间,记录一下。

另外附更换conda源的方法:


    conda config --add channels https://mirrors.tuna.tsinghua.edu.cn/anaconda/cloud/msys2/

    conda config --add channels https://mirrors.tuna.tsinghua.edu.cn/anaconda/cloud/conda-forge/

    conda config --add channels https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free/

    conda config --set show_channel_urls yes

这几句命令的意思是改变conda的配置文件.condarc。使用命令conda config --show-sources可以查看这个配置文件和它的路径。

你可能感兴趣的:(bug,anaconda,pytorch)