On Jun 10, 5:29 pm, "Mark Delon" <[EMAIL PROTECTED]> wrote:
> Hi,
>
> My Python executable created with PyInstaller is too slow by starting...
> It takes about 15 secs.!!!
>
> I am  using PyQt4 libraries for creating my very simple GUI-application.
>
> -> How can I SPEED UP my executable ???
> -> Do you know some GOOD build switches?
>
> Thank you very much for every idea...
>
> Best Regards
>
> Mark
>
> --
> Der GMX SmartSurfer hilft bis zu 70% Ihrer Onlinekosten zu sparen!
> Ideal für Modem und ISDN:http://www.gmx.net/de/go/smartsurfer

Possibly you could use a splash screen and as have been said, you
should load modules as late as possible (that means the some import
statement is not positioned in the beginning of the code). You should
reach the event loop as soon as possible.
--
http://mail.python.org/mailman/listinfo/python-list

Reply via email to