Is there anyway to speedup start-up for wxPython? It takes usually around 5 seconds for the application to start on my Ubuntu machine, even when I write the most simple ones!

import wx

class MyApp(wx.App):
        def OnInit(self):
                frame = wx.Frame(None, id = wx.ID_ANY, title = u"Duplicate Detector", pos = wx.DefaultPosition, size = wx.Size( 800,600 ), style = wx.DEFAULT_FRAME_STYLE|wx.TAB_TRAVERSAL )
                frame.Show(True)
                return True

if __name__ == "__main__":
    app = MyApp(redirect=False)
    app.MainLoop()

The tiny bit of code above, takes some times to load.

link|improve this question

77% accept rate
Any code? They instantly load for me on both ubuntu and windows. – Iacks Mar 30 '11 at 13:07
1  
They usually load up faster than that for me on Windows. Maybe you should show a splash screen or something. If you have slow stuff in the program, like lots of database access or file reading, do that after it's loaded or in threads. – Mike Driscoll Mar 30 '11 at 13:43
1  
your code starts almost instantly for me on Ubuntu 10.10 – Corey Goldberg Mar 30 '11 at 14:10
feedback

1 Answer

up vote 2 down vote accepted

wxPython is a big package, and takes a non-trivial amount of time to load. Other toolkits may take less time, but the effort to port an app may not be worth it.

$ time python -c 'import wx'

real    0m1.646s
user    0m0.306s
sys     0m0.079s
link|improve this answer
Are there tricks to speed-up the import for big packages? – banx Mar 30 '11 at 14:31
Not really. Preloading the files doesn't help since the preloading will take the same amount of time, and you can't do the package setup until the application actually starts anyway. – Ignacio Vazquez-Abrams Mar 30 '11 at 14:35
time python -c "import wx": real 0m0.143s user 0m0.108s sys 0m0.020s – Iacks Mar 30 '11 at 14:48
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.