当创建使用tkinter,docx和xlwt的python脚本的.exe文件时,当我尝试运行创建的文件时出现此错误。
我的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解决