I'm running Python 2.7 and wxPython 2.8 on 64-bit Windows 7 (but Python and wx are both the 32-bit versions).
I'm trying to import the module, but import wx returns an error:
Traceback (most recent call last):
File "C:/Users/Adam/Desktop/test", line 4, in <module>
import wx
File "C:\Users\Adam\Desktop\test.py", line 8, in <module>
class MyFrame(wx.Frame):
AttributeError: 'module' object has no attribute 'Frame'
From research I think I've not set up some enviroment variables correctly, but everywhere I look no one actually says what I need to add to what variables.
Thanks a lot!