0

目前我正在学习python,并且一直在尝试编译python代码。

我遇到的问题是,一旦脚本被编译,它就没有响应。

我了解到一个 IDLE-X 扩展可以帮助解决这个问题,但是编译后会出现同样的错误。我正在运行 Windows 7 Ultimate 64Bit、wxPython 2.7、python 2.7 和 py2exe for 2.7。->

import wx

class aero(wx.Frame):

def __init__(self,parent,id):
    wx.Frame.__init__(self,parent,id,'Aero v1.0b', size=(500,500))
    panel=wx.Panel(self)

    status=self.CreateStatusBar()
    menubar=wx.MenuBar()
    first=wx.Menu()
    second=wx.Menu()
    first.Append(wx.NewId(),"New Window","This is a new window" )
    first.Append(wx.NewId(),"Open...","This will open a new window" )
    menubar.Append(first,"File")
    menubar.Append(second,"Edit")
    self.SetMenuBar(menubar)


if __name__=='__main__':
app=wx.PySimpleApp()
frame=aero(parent=None,id=-1)
frame.Show()
app.MainLoop

我从这个线程中得到了一些帮助:pythonw.exe 没有响应

我想知道为什么会这样。

非常感谢你。

4

1 回答 1

0

由于 py2exe 不再更新,我建议尝试使用 PyInstaller 或 cx_freeze。

于 2012-05-25T14:05:51.690 回答