解决:[anaconda安装pytorch]Collecting package metadata (current_repodata.json): failedYou will need to ad

解决:Collecting package metadata (current_repodata.json): failed

  • 1.问题导入
  • 2.安装anaconda
  • 3.安装pytorch
  • 4.问题解决方式

1.问题导入

昨天运行一段代码,需要导包,但没有安装,按照pycharm中代码提示install package torch总出错:

m = torch.nn.MaxPool2d(3, stride=2)
input = autograd.Variable(torch.randn(20, 16, 50))
print(input.shape)
output = m(input)
output.shape

torch.Size([20, 16, 50])
torch.Size([20, 7, 24])

问了一下室友,室友刚学深度学习时有安装过这个,说用torch要安装pytorch,就给我发了个视频,装pytorch之前还要装anaconda。

视频链接:https://live.csdn.net/v/121851

2.安装anaconda

解决:[anaconda安装pytorch]Collecting package metadata (current_repodata.json): failedYou will need to ad_第1张图片

装完anaconda后,在cmd中执行 conda list命令 和conda --version 命令后,能查看到版本,就说明已经安装好了anaconda。

  • 执行conda list命令 有很多 只截取了部分
    解决:[anaconda安装pytorch]Collecting package metadata (current_repodata.json): failedYou will need to ad_第2张图片
  • 执行conda --version 命令
    在这里插入图片描述
  • anaconda安装完成

3.安装pytorch

打开Pytorch官网https://pytorch.org/。
解决:[anaconda安装pytorch]Collecting package metadata (current_repodata.json): failedYou will need to ad_第3张图片

  • 安装成功
    用管理员身份运行cmd,粘贴conda install pytorch torchvision torchaudio cudatoolkit=10.2 -c pytorch 这条命令,有的电脑到这里能成功运行,就像室友的电脑一样,没有出任何错,直接就安装成功了。
    解决:[anaconda安装pytorch]Collecting package metadata (current_repodata.json): failedYou will need to ad_第4张图片
  • 安装失败
    用管理员身份运行cmd,粘贴conda install pytorch torchvision torchaudio cudatoolkit=10.2 -c pytorch 这条命令,有的电脑到这里能成功运行,就像室友的电脑一样,没有出任何错,直接就安装成功了。但是我的电脑就出错了,忘记截图了。
    类似如下错误信息:
    Collecting package metadata (current_repodata.json): failed。
    An HTTP error occurred when trying to retrieve this URL. HTTP errors are often intermittent, and a simple retry will get
    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.
    PackagesNotFoundError: The following packages are not available from current channels:

4.问题解决方式

尝试了很多解决方法都不对。终于有一种正确了一些。

  • 错误的尝试一:
    按照下面的方式来解决掉:把路径“Anaconda3/Library/bin ”下面的文件复制到路径“Anaconda3/DLLs”下:
    libcrypto-1_1-x64.dll
    libssl-1_1-x64.dll
    再次运行命令行:
    conda install pytorch torchvision torchaudio cudatoolkit=10.2 -c pytorch
    还是报错,没有用。
  • 错误的尝试二:
    还有要更新anaconda的,也解决不了我的错误。
    conda update conda
    conda update anaconda
    conda update anaconda-navigator //update最新版本的anaconda-navigator
  • 等等。。。
  • 正确的解决方法:
    先删除已经设定好滴默认镜像源,执行下面的命令后就恢复了原来的源
    conda config --remove-key channels
    重新添加清华源
    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 --add channels https://mirrors.tuna.tsinghua.edu.cn/anaconda/cloud/pytorch/
    conda config --set show_channel_urls yes
    重新执行这条命令:
    conda install pytorch torchvision torchaudio cudatoolkit=10.2 -c pytorch
    解决:[anaconda安装pytorch]Collecting package metadata (current_repodata.json): failedYou will need to ad_第5张图片

5.遗留问题待解决

但是又出现了其他问题,该怎么解决呀?
解决:[anaconda安装pytorch]Collecting package metadata (current_repodata.json): failedYou will need to ad_第6张图片

6. 目录5遗留问题的解决办法

现在是凌晨了,今天一天应该说昨天一天,什么也没有干成,就弄这个问题了,刚才忽然发现我没装CUDA却在装pytorch时选了cuda版本,欲哭无泪啊~
解决办法我已经写在了下一篇博客(解决:CondaHTTPError: HTTP 000 CONNECTION FAILED for url )里,https://blog.csdn.net/ckc_csdn/article/details/110847776

你可能感兴趣的:(初学图像处理,anaconda,python,pytorch,经验分享)