使用py2exe做的.exe没做任何事情

时间:2015-04-11 19:09:27

标签: python python-2.7 py2exe

我在Windows 7 x86上使用Python 2.7.9

我正在尝试制作成可执行文件的文件包含以下源代码:

import Tkinter
root=Tkinter.Tk()
root.mainloop()

是的,不多,只是一个空窗。

安装文件是:

from distutils.core import setup
import py2exe, sys, os
sys.argv.append('py2exe')
s=raw_input("Name:")
s=s+".py"
setup(
    options = {'py2exe': {'bundle_files': 1, 'compressed': True}},
    windows = [{'script': s}],
    zipfile = None,
)

当我运行exe时,即使使用cmd也没有任何反应。我也没有错,它只是......什么也没做。

1 个答案:

答案 0 :(得分:-1)

我总是发现cx_freeze在Windows上更容易使用 http://cx-freeze.sourceforge.net/