mark wrote: > I used pyInstaller to get a rapid setup > application which really worked fine on some > machines until I tried on a certain WinXP Home SP2 machine. > > There I get: > "The application or DLL _imaging.pyd is not a valid Windows image" > or in German: > " Anwendung oder DLL _imaging.pyd ist keine gültige Windows-Datei. > Überprüfen sie dies mit der Installationssikette." > > When I click OK the application continues to work fine. > But when I start the app automatically at windows > boot time this is not acceptable :-( > > Any ideas around what might be wrong?
_imaging.pyd is part of PIL, right? Well, it looks like your WinXP Home SP2 does not succeed in loading _imaging.pyd. Does it work if you try deploying it as a directory (instead of a single file), and if you disable UPX (in case you had it enabled)? -- Giovanni Bajo _______________________________________________ PyInstaller mailing list [email protected] http://lists.hpcf.upr.edu/mailman/listinfo/pyinstaller
