Please add the following to your Makespec.py call:

Makespec.py <your options> --manifest msvc90dep.manifest <your script.py>

(manifest file below)

Does it work?

Regards,

Florian

Laurent Dufrechou schrieb:
> Hi florian,
> 
> Look this interesting thing:
> 
> In [40]: 
> imp.load_module('matplotlib._path',a,"C:\\...\\Manager\\",('.pyd','rb',3))
> ---------------------------------------------------------------------------
> ImportError                               Traceback (most recent call last)
> 
> C:\..\Manager\<ipython console> in <module>()
> 
> ImportError: DLL load failed: Le module spÚcifiÚ est introuvable.
> 
> In [41]: a,b,c = imp.find_module('matplotlib._path')
> 
> In [42]: imp.load_module('test',a,b,c)
> Out[42]: <module 'matplotlib._path' from 'matplotlib._path.pyd'>
> 
> I think there is definitively something wrong with imp.laod_module.
> I'll try to patch iu.py to use find_module, and will keep you updated.
> 
> Cheers,
> Laurent
> 
> --
> 
> 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.

--

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.


<assembly xmlns="urn:schemas-microsoft-com:asm.v1" manifestVersion="1.0">
  <dependency>
    <dependentAssembly>
      <assemblyIdentity type="win32" name="Microsoft.VC90.CRT" 
version="9.0.21022.8" processorArchitecture="x86" 
publicKeyToken="1fc8b3b9a1e18e3b"></assemblyIdentity>
    </dependentAssembly>
  </dependency>
</assembly>

Reply via email to