OSError: [WinError 126] 找不到指定的模块---caffe2_detectron_ops_gpu.dll

代码复现记录:

问题:OSError: [WinError 126] 找不到指定的模块。 Error loading "C:\Anaconda\Anaconda3\envs\TIN\lib\site-packages\torch\lib\caffe2_detectron_ops_gpu.dll" or one of its dependencies.

在搜索很多关于无法查找到caffe2_detectron_ops_gpu.dll相关问题时,有的解决方案是下载Visual C++ Redistributable运行库,有的是因为版本不匹配需要重新安装相关版本。

经过实验都没有正确运行,但是偶然发现一位大佬的解决方案,豁然开朗。原文是【Pytorch的坑】OSError: [WinError 126] 找不到指定的模块caffe2_detectron_ops_gpu.dll” or one of its dependencies

下面是解决方案

conda install pytorch torchvision torchaudio cudatoolkit=10.2 -c pytorch

 还有一种

conda install intel-openmp

感谢大佬,还有帮助我的朋友!!! 

你可能感兴趣的:(python运行问题,python,pytorch)