我在 Windows(版本,x64)上构建了 _caffe.cpp 的 .dll。
我将扩展名 .dll 更改为 .pyd 并尝试在 python 中导入它:
import caffe
File "\caffe-master\python\caffe\__init__.py", line 1, in <module>
from .pycaffe import Net, SGDSolver
File "\caffe-master\python\caffe\pycaffe.py", line 13, in <module>
from ._caffe import Net, SGDSolver
ImportError: DLL load failed: The specified module could not be found.
这是什么意思,缺少一些依赖项模块,这些模块包含在 Visual Studio 的项目中,我在其中构建了这个 dll?