wxPython安裝設置求助

wxPython安裝設置求助

我將它安裝在 \Python25\site-packages 下了 然後 使用測試代碼

[Copy to clipboard] [ - ]
CODE:
import wx

class DemoPanel(wx.Panel):
   """This Panel hold two simple buttons, but doesn't really do anything."""
   def __init__(self, Parent, *args, **kwargs):
      """Create the DemoPanel."""
      wx.Panel.__init__(self, Parent, *args, **kwargs)
      
      self.Parent = Parent  # Sometimes one can use inline Comments

      NothingBtn = wx.Button(self, label="Do Nothing with a long label")
      NothingBtn.Bind(wx.EVT_BUTTON, self.DoNothing )
      
      MsgBtn = wx.Button(self, label="Send Message")
      MsgBtn.Bind(wx.EVT_BUTTON, self.OnMsgBtn )
      
      Sizer = wx.BoxSizer(wx.VERTICAL)
      Sizer.Add(NothingBtn, 0, wx.ALIGN_CENTER|wx.ALL, 5)
      Sizer.Add(MsgBtn, 0, wx.ALIGN_CENTER|wx.ALL, 5)
      
      self.SetSizerAndFit(Sizer)

   def DoNothing(self, event=None):
      """Do nothing."""
      pass

   def OnMsgBtn(self, event=None):
      """Bring up a wx.MessageDialog with a useless message."""
      dlg = wx.MessageDialog(self,
                             message='A completely useless message',
                             caption='A Message Box',
                             style=wx.OK|wx.ICON_INFORMATION
                             )
      dlg.ShowModal()
      dlg.Destroy()

class DemoFrame(wx.Frame):
   """Main Frame holding the Panel."""
   def __init__(self, *args, **kwargs):
      """Create the DemoFrame."""
      wx.Frame.__init__(self, *args, **kwargs)
      
      # Build the menu bar
      MenuBar = wx.MenuBar()
      
      FileMenu = wx.Menu()
      
      item = FileMenu.Append(wx.ID_EXIT, text="&Quit")
      self.Bind(wx.EVT_MENU, self.OnQuit, item)
      
      MenuBar.Append(FileMenu, "&File")
      self.SetMenuBar(MenuBar)
      
      # Add the Widget Panel
      self.Panel = DemoPanel(self)
      
      self.Fit()
      
   def OnQuit(self, event=None):
      """Exit application."""
      self.Close()

if __name__ == '__main__':
   app = wx.App()
   frame = DemoFrame(None, title="Micro App")
   frame.Show()
   app.MainLoop()

它說找不到wx 這個模塊 我應該在那裏添加上什麽東西呢...

謝謝大家樂


[Copy to clipboard] [ - ]
CODE:
Traceback (most recent call last):
  File "C:\Python25\site-packages\Test.py", line 1, in <module>
    import wx
ImportError: No module named wx

WinXpsp2 python25 wx-2.8-msw-unicode
重裝一次就ok了 好奇怪.....