解决pytroch 2.4提示缺少fbgemm.dll的问题

#python/pytorch/问题记录

```

>>> import torch

Traceback (most recent call last):

File "<stdin>", line 1, in <module>

File "C:\Users\95416\AppData\Local\Programs\Python\Python312\Lib\site-packages\torch\__init__.py", line 148, in <module>

raise err

OSError: [WinError 126] 找不到指定的模块。 Error loading "C:\Users\95416\AppData\Local\Programs\Python\Python312\Lib\site-packages\torch\lib\fbgemm.dll" or one of its dependencies.

```

1. 下载[Release minor fix on version number · lucasg/Dependencies (GitHub: Let’s build from here)](Release minor fix on version number · lucasg/Dependencies)并且运行DependenciesGui.exe,打开fbgemm.dll,位于"C:\\Users\\95416\\AppData\\Local\\Programs\\Python\\Python312\\Lib\\site-packages\\torch\\lib",软件会分析缺失了什么文件。

通常是libomp140.x86_64.dll这个文件。
2. 在下面的链接下载这个文件[libomp140.x86_64.dll : Free .DLL download. (dllme.com)](https://www.dllme.com/dll/files/libomp140_x86_64/00637fe34a6043031c9ae4c6cf0a891d/download)
3. 解压缩后把libomp140.x86_64.dll复制到fbgemm.dll所在相同文件夹即可,"C:\\Users\\95416\\AppData\\Local\\Programs\\Python\\Python312\\Lib\\site-packages\\torch\\lib"。

作者:bziyue

物联沃分享整理
物联沃-IOTWORD物联网 » 解决pytroch 2.4提示缺少fbgemm.dll的问题

发表回复