据我所知,cx_freeze
是唯一能够为.exe
文件制作Python脚本的应用程序。但是,我想在Python 3中创建一个GUI exe
。在冻结一个简单的Tkinter GUI并运行exe之后,我收到以下错误:
> _tkinter.TclError: Can't find a usable init.tcl in the following directories:
> {C:\Users\User\Desktop\tkinter\build\exe.win32-3.1\tcl}
> C:/Users/User/Desktop/tkinter/build/exe.win32-3.1/tcl8.5
> C:/Users/User/Desktop/tkinter/build/lib/tcl8.5
> C:/Users/User/Desktop/tkinter/build/lib/tcl8.5
> C:/Users/User/Desktop/tkinter/lib/tcl8.5
> C:/Users/User/Desktop/tkinter/build/library
> C:/Users/User/Desktop/tk inter/library
> C:/Users/User/Desktop/tkinter/tcl8.5.2/library
> C:/Users/User/Desktop/tcl8.5.2/library
> This probably means that Tcl wasn't installed properly.
我正在使用简单设置 cx_freeze选项。
我的cx_freeze exe包保存到以下目录:
C:\Users\User\Desktop\tkinter\build\exe.win32-3.1
文件是:
_ctypes.pyd
_tkinter.pyd
basicLABEL.exe
library.zip
python31.dll
tcl85.dll
tk85.dll
unicodedata.pyd
答案 0 :(得分:7)
我刚刚通过将位于Python 3安装目录中的tcl8.5
和tk8.5
目录复制到应用程序运行的.exe
文件夹中来解决问题。