开发者

wx.App (wxPython) crash when calling

Recently I installed wxPython to do some works under Windo开发者_高级运维ws. Most of the time I work in Linux so I have a little experience here.

with python.exe interpreter, I just do 2 line of code

import wx

tmp=wx.App(False)

Then the interpreter crashed with Windows error reporting.

I tried both python 2.7.1 and 2.6.6 with wxPython 2.8.11, all come from their main website, still no luck.

Is there something I must do after install Python in Windows ? I can see that python install just fine and can do some basic job, wxPython library can be load, but can't call wx.App


If you are running that in IDLE, then that is your problem. IDLE and wx don't get along very well because you basically end up with two mainloops fighting each other. Try putting it in a file and then run the file from the command line:

c:\python27\python.exe myPyFile.py

That should work just fine. Otherwise, download the correct wxPython for your Python and OS (32/64 bit), uninstall the current one and install the new one. I've been using wxPython on Windows XP, Vista and 7 with no problems like this.


In case like me somebody will stumble into this question like I did. Recently installed wxpython on two machines, windows 7 and XP. Testing the sample code in simple.py (provided with the wxpython docs-demos installer), running from a python console, I had the following problem on both machines: First import ok, but when I did a reload of the module, python crash.

I added this line in the end of the simple.py file: del app

and that fixed the problem on windows 7 and tomorrow I try it on the XP machine.

Same solution fitted for the XP machine. So, reloading an un-edited module with a reference to a wx.App with a closed gui seem not to be feasable. Killing the reference with a del statement was enough to solve the problem.


I searched for a while and found that this is the problem with wxPython and Python >2.5. Tried many fix with manyfest file but no luck, so I think switch to PyQt is the only solution now.

0

上一篇:

下一篇:

精彩评论

暂无评论...
验证码 换一张
取 消

最新问答

问答排行榜