Hi all,
Thanks to Eric I found the demo, but it seems I have two wxPython
versions installed. One by wxGlade (wxPython 2.6.x.x) and one from the
RPM (wxPython 2.8.4.0). I tried running wxGlade on the latest wxPython
but it simply hung upon loading my project (CVS version from today).
So I installed wxGlade 0.4.x.x which seemed to work better.
But now I have the python demo that reports:
File "demo.py", line 3, in <module>
import Main
File "/home/jorg/Desktop/demo/demo/Main.py", line 35, in <module>
import wx.aui
I had this in my own app, and solved it by adding an __init__.py file
with the lines;
import wxversion
wxversion.select("2.8")
import wx
And my app ran with 2.8 as default no problem whatsoever. How can I do
this for the wxPython demo as well? Making wxPython 2.8 default would
kill wxGlade, so I rather tweak the demo somehow elegantly if
possible..
Regards,
- Jorgen