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

后端 未结 2 1504
感情败类
感情败类 2020-12-31 05:47

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 fi

相关标签:
2条回答
  • 2020-12-31 06:00

    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.
    0 讨论(0)
  • 2020-12-31 06:09

    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.

    0 讨论(0)
提交回复
热议问题