遇到问题:import torchvision时报错,ImportError: DLL load failed: 找不到指定的模块。
这个问题困扰了我很久,以下是我尝试过的方法以及最终解决方案:
Step 1
首先,我找到了这篇文章:Python每日一记78>>>ImportError: DLL load failed: 找不到指定的模块问题终极解决方案
按照该文章的步骤进行操作,在重装Torchvision时便出现了问题:
ERROR: Could not find a version that satisfies the requirement torch==1.4.0 (from torchvision) (from versions: 0.1.2, 0.1.2.post1, 0.1.2.post2)
ERROR: No matching distribution found for torch=1.4.0 (from torchvision)
Step 2
之后,我找到了第二篇文章:解决ERROR:Could not find a version that satisfies the requirement torch==1.4.0
根据教程进行操作。不过我并没有重装Torch,而是直接跳到了第二部,重装了torchvision。之后再次import torchvision,成功!感谢两位作者的分享!