Jeremy Sanders píše v So 13. 08. 2011 v 11:20 -0700: > > Hi - I have some more minor issues maybe someone could help me with. > I'm using the latest svn version of pyinstaller on windows (Python > 2.7). I'm using numpy and PyQt in my program. > > * Why does KERNEL32.DLL get put in my distribution? > Presumably this > shouldn't be included. How can I debug where this came from? Can I > remove it in my spec file?
I suppose this would be dependency of qt plugins. Recently svn version was changed to check also DLL dependencies of qt plugins. Maybe this could be side effect of that change. > > * The PyQt hooks seem to pull in all the PyQt modules. I'm only using > a few of them. Can I exclude them or do I have to modify the hook > file? Can I remove unwanted plugins also? What all modules do you use? And how do you import them in your code? Many qt plugins depend on more qt modules even when you don't use them directly. > * I get the debugging DLLs from Qt included in the distribution > Qt*d.dll. Does anyone know how to get these excluded? As far as I know > PyQt shouldn't be using these DLLs. I suspect they are included > because pyinstaller picks up the debugging version of the qt plugins, > which then pulls in the debugging version of the qt libraries. I think > pyinstaller should exclude the files *d4.dll from the plugin > directories, which are debugging library plugins Where did you get PyQt binaries? -- 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.
