I'm having a little trouble running wxPython. I did a little Googling and didn't find a whole lot though.
Here is a sample of what I'm trying to run...
import wx
app = wx.PySimpleApp()
frame = wx.Frame(None, wx.ID_ANY, "Hello World")
frame.Show(True)
app.MainLoop()
This code is straight from the tutorial provided by wxPython, so I'd expect this to work... however it doesn't.
In the command line I'll type "python hello-world.py" and it'll load the window, but after a couple seconds I get the wonderful "python.exe has stopped working" error.
Is there anyone else who has had this issue and knows how to fix it? I'd like to stick with learning wxPython as it seems to be the best choice... but if it won't work on my machine, I'll have to change.