我想學習wxPython和當我按照教程學習它。我遇到一些錯誤。我做了大量的研究,在這個網站上找不到任何與我的情況有關的東西,我也重新安裝並嘗試了python 2.7的所有不同版本的wxpython,但仍然沒有任何區別。我使用的是戴爾Windows 8計算機64位。 下面是從教程中的代碼:wxPython AttributeError:模塊沒有屬性「框架」
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'
什麼'import wx;打印wx .__文件___打印? –
C:\ Python27 \ lib \ site-packages \ wx.pyc –
軟件包是如何安裝的?你運行過'setup.py'還是使用二進制安裝程序? –