Ed, Thanks for the reply. Heres the output from the imports you suggested Python 2.6.2 (release26-maint, Apr 19 2009, 01:58:18) [GCC 4.3.3] on linux2 Type "help", "copyright", "credits" or "license" for more information. >>> import wx >>> import wx.aui Traceback (most recent call last): File "<stdin>", line 1, in <module> ImportError: No module named aui >>>
And for good measure Python 2.5.4 (r254:67916, Apr 4 2009, 17:56:17) [GCC 4.3.3] on linux2 Type "help", "copyright", "credits" or "license" for more information. >>> import wx >>> import wx.aui Traceback (most recent call last): File "<stdin>", line 1, in <module> ImportError: No module named aui >>> Also I looked at sys.modules and found that the imported wx package comes from usr/lib/python2.6/wx-2.6-gtk2-unicode/wx in which there is no aui.py. The only aui.py files exist in ......./wx-2.8-gtk2-unicode/wx looks as if I need to switch python to using the 2.8 variety! All suggestions gratefully received! Mike Ayers _______________________________________________ Post Messages to: [email protected] Subscription Maintenance: http://leafe.com/mailman/listinfo/dabo-users Searchable Archives: http://leafe.com/archives/search/dabo-users This message: http://leafe.com/archives/byMID/1242951010.4797.18.ca...@coastlin
