使用py2exe和tkinter创建一个独立的.exe

时间:2015-09-26 15:31:05

标签: python tkinter py2exe

我有一个带有tkinter创建GUI的计算器程序。我想将它打包到单个GUI中,但使用

py -3.4 -m py2exe.build_exe calc_gui.pyw -p tkinter -b 0

在命令提示符下,我收到错误消息:

The following modules require a minimum of bundle_files option, 
otherwise they will not work (currently bundle_files is set to 0):
         tkinter: 2

Please change the bundle_files option and run the build again.
Build failed

我想知道是否有一种方法可以使用py2exe将其打包成单个.exe,因为使用-b 2或3可以正常工作,但它们不会产生独立的.exe&#39>

BTW,这是在Python 3中(py2exe支持)

1 个答案:

答案 0 :(得分:1)

更改build_bundle option to one。这会将它捆绑到一个文件中。