解决问题:ERROR: No matching distribution found for torch==1.12.1+cu102

conda虚拟环境安装pytorch10.2时出现报错:

ERROR: Could not find a version that satisfies the requirement torch==1.12.1+cu102 (from versions: 1.7.0, 1.7.1, 1.8.0, 1.8.1, 1.9.0, 1.9.1, 1.10.0, 1.10.1, 1.10.2, 1.11.0, 1.12.0, 1.12.1, 1.13.0, 1.13.1)
ERROR: No matching distribution found for torch==1.12.1+cu102
WARNING: There was an error checking the latest version of pip.

 查询网上资源,大概率版本不匹配问题,检查自己的cuda版本为10.1

解决问题:ERROR: No matching distribution found for torch==1.12.1+cu102_第1张图片

更换安装代码后仍然出现问题,因此考虑python版本问题,此时版本为3.8

降级为3.7后,继续安装,报错消失。目前网上的安装教程很多都是旧版本,当python版本过高就会出现版本不支持的情况,对于学习pytorch基本原理,使用低版本的python和pytorch已经足够。 

解决问题:ERROR: No matching distribution found for torch==1.12.1+cu102_第2张图片

解决问题:ERROR: No matching distribution found for torch==1.12.1+cu102_第3张图片

最近因为读研需要学习pytorch 框架,但无人指导,寻找了一份中文文档尝试使用jupyter notebook一边运行一边学习,链接在此,有需自取。zergtant/pytorch-handbook: pytorch handbook是一本开源的书籍,目标是帮助那些希望和使用PyTorch进行深度学习开发和研究的朋友快速入门,其中包含的Pytorch教程全部通过测试保证可以成功运行 (github.com)

你可能感兴趣的:(python,深度学习,pytorch)