我正在尝试学习 wxPython,当我按照教程学习它时。我遇到了一些错误。我做了很多研究,在这个网站上找不到任何与我的情况相关的东西,我也重新安装并尝试了所有不同版本的 wxpython for python 2.7,仍然没有区别。我使用的是 64 位戴尔 Windows 8 计算机。这是教程中的代码:
import wx
class MyFrame(wx.Frame):
def __init__(self, parent, title):
wx.Frame.__init__(self, parent, title=title, size=(200,100))
self.control = wx.TextCtrl(self, style=wx.TE_MULTILINE)
self.Show(True)
app = wx.App(False)
frame = MyFrame(None, 'Small editor')
app.MainLoop()
和错误:
Traceback (most recent call last):
File "C:\Python27\test", line 2, in <module>
class MyFrame(wx.Frame):
AttributeError: 'module' object has no attribute 'Frame'