Python 3.4 - 使用cx_freeze创建.exe时出错--Tkinter-docx-xlwt模块

时间:2017-02-01 17:10:37

标签: python-3.x tkinter cx-freeze xlwt python-docx

当创建使用tkinter,docx和xlwt的python脚本的.exe文件时,当我尝试运行创建的文件时出现此错误。

Screenshoot

我的setup.py文件如下所示:

import sys
from cx_Freeze import setup, Executable
# replaces commandline arg 'build'
sys.argv.append("build")  
# change the filename to your program file --->
filename = "casdaf.py"
base = None
if sys.platform == "win32":
    base = "Win32GUI"
setup(
    name = "Circle",
    version = "1.0",
    description = "Nothing",
    executables = [Executable(filename, base=base)])

是的,该脚本最后包含root.mainloop()

我猜问题来自其中一个库......

编辑:使用Pyinstaller解决

0 个答案:

没有答案