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

1

20

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?

Sausa answered 13/1, 2012 at 5:47 Comment(0)
A
37

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.
Addi answered 5/6, 2013 at 10:25 Comment(3)
Exactly the third one. I compiled the dll manually without the suffix of '_d' in a debug build, wasting half a day to figure out the import error!Boucher
It was the second bullet for me. I had to install Dependencies by lucasg as recommended in another answer since depends.exe gives many false positives since it doesn't recognize API-sets.Summersummerhouse
Life saver.. I wasted a day of frustration. It was the deps that where instantly solvable by lucasg info.Monolayer

© 2022 - 2024 — McMap. All rights reserved.