EXE is very slow by starting (>10sec.) (build with PyInstaller)

Lie Lie.1296 at gmail.com
Tue Jun 10 11:45:59 EDT 2008


On Jun 10, 5:29 pm, "Mark Delon" <p... at gmx.at> 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.



More information about the Python-list mailing list