ImportError while importing a python file in a pyd
问题 Alright, so, what I'm trying to do is import a module in folders packed inside of a .pyd file. Here is something that would work for me: from apple import __init__ With apple being the .pyd in the same directory as the Python script, and __init__ of course being packed inside of the .pyd. This would work, however here is what I want to do, but doesn't work: from apple.seed.worm import WormManager Explanation: apple = pyd, seed = directory in the pyd, worm = directory in seed directory in