pytorch|找不到 fbgemm.dll 问题处理

问题现象

运行逻辑:

import torch

报错如下:

Traceback (most recent call last):
  File "C:\scaffold\metasequoia-tyc\ner_address\test_torch.py", line 1, in 
    import torch
  File "D:\py\Python310\lib\site-packages\torch\__init__.py", line 143, in 
    raise err
OSError: [WinError 126] 找不到指定的模块。 Error loading "D:\py\Python310\lib\site-packages\torch\lib\fbgemm.dll" or one of its dependencies.

问题解决

Step 1|下载 dll 文件依赖分析工具 Dependencies

下载地址:https://github.com/lucasg/Dependencies/tree/v1.11.1

pytorch|找不到 fbgemm.dll 问题处理_第1张图片
pytorch|找不到 fbgemm.dll 问题处理_第2张图片

如果是 32 位系统,则下载 x86_Release 文件。

Step 2|使用 Dependencies 分析报错 ddl 文件的依赖

解压后运行 DependenciesGui.exe 文件。

点击 File > Open,选择依赖报错的 dll 文件。

pytorch|找不到 fbgemm.dll 问题处理_第3张图片

通过上图,可以看到使用因为没有找到依赖的 VCOMP140.DLL 文件。

Step 3|解决 vcomp140.dll 文件的问题

搜索 vcomp140.dll 文件,找到如下解决方案:https://www.bilibili.com/read/cv27989426/,发现可能需要重新安装 Visual C++ Redistributable 工具。

找到 Microsoft 官网下载地址:https://www.microsoft.com/zh-cn/download/details.aspx?id=48145&751be11f-ede8-5a0c-058c-2ee190a24fa6=True

pytorch|找不到 fbgemm.dll 问题处理_第4张图片

安装之,即可正常 import torch。

你可能感兴趣的:(pytorch,pytorch,人工智能,python,fbgemm,VCOMP140)