Error importing a .pyd file (as a python module) from a .pyo file

末鹿安然 提交于 2019-11-30 08:29:01

It's typically because of one or more of the following:

  • The .pyd is not in your current path (you said it was in the same folder so that should not be the problem)
  • A DLL the .pyd depends on is not in your current path. Locate the missing DLL's using depends.exe and either copy these dll's to the same folder or add the containing directories to your system path
  • You're using a debug version of python. Then the module must be renamed from xyz.pyd to xyz_d.pyd.

The script that does not work is somewhere else? I suspect Python simply does not find the .pyd file. See http://docs.python.org/tutorial/modules.html#the-module-search-path for how to sort it out.

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!