[EMAIL PROTECTED] wrote: >> I would like to use Pyinstaller for PyQt applications we are >> developing. Initial experiments have been unsuccessful (I suspect >> hidden import problems that I have not yet investigated). >> >> Is there a simple set of directions for using Pyinstaller for a PyQt >> application? At the moment I do not care whether the result is a >> single executable or an executable together with some DLLs. I'd >> just like, as an initial step, to get one of the PyQt examples to >> work with Pyinstaller (and Inno Setup -- but the Pyinstaller step >> comes first).
If you are running PyInstaller 1.0, it should be working with PyQt out of the box. I routinely package relatively complex PyQt applications with PyInstaller. One way to debug the problem is to build with debug support (run Makespec with --debug --console, or modify your .spec file putting debug=1 and console=1 in the right place). With this stuff on, you should be able to see the actual traceback for the ImportError. If you can report it here, we can see what it is going on. Giovanni Bajo _______________________________________________ PyInstaller mailing list [email protected] http://lists.hpcf.upr.edu/mailman/listinfo/pyinstaller
