简体   繁体   中英

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

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?

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.

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM