On 25/04/2007 10.46, Nunatak wrote: >>From the PyInstaller documentation I understand that this is probably > not a hidden import problem. > This happens even though the module's location is explicitly given in > the spec file's Analysis' pathex argument: > > a = Analysis([ os.path.join(HOMEPATH,'support\\_mountzlib.py'), > os.path.join(HOMEPATH,'support\\useUnicode.py'), > 'D:\\Trunk\\run.py'], > pathex=['C:\\Python24\\pyinstaller-1.3', > 'C:\\Python24\\Lib\\site-packages\ > \enthought.traits.ui.wx-1.1.0_r10538-py2.4.egg\\enthought\\traits\ > \ui']) > > Has anyone encountered this or similar problems? What can I do to fix > it? > > Help of any kind is highly appreciated.
Is that an .egg-file or a .egg-directory? If the former, it's not supported by PyInstaller (see our FAQ for a workaround: you can reinsall it telling easy_install to unpack the files). Otherwise, I can't see why it doesn't work. I will need a minimal testcase to analyze this (a module with a single line doing that import is enough to reproduce the failure?) -- Giovanni Bajo --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "PyInstaller" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [EMAIL PROTECTED] For more options, visit this group at http://groups.google.com/group/PyInstaller?hl=en -~----------~----~----~----~------~----~------~--~---
