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

人盡茶涼 提交于 2019-11-29 11:50:19

问题


I am running pygame (for Python) on Windows. I have some .pyo files and some .pyd files. I have another script for somewhere else that is trying to import one of the .pyd files as a module but I keep getting the error that no such module exists.

Do .pyo files have issues importing .pyd files as modules? What can I do to solve this issue?


回答1:


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 or its modern rewrite 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.



回答2:


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.



来源:https://stackoverflow.com/questions/8846480/error-importing-a-pyd-file-as-a-python-module-from-a-pyo-file

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