我在64位Windows 7上运行Python 2.7和wxPython 2.8(但Python和wx都是32位版本)。
我正在尝试导入模块,但导入wx会返回错误:
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'
从研究中我认为我没有正确设置一些环境变量,但在任何地方我看起来没有人真正说出我需要添加什么变量。
非常感谢!
答案 0 :(得分:3)
唯一想到的是你已经打了别的东西“wx.py”。打印wx.__file__
的值以进行验证,然后重命名。