cx_freeze:在以下目录中找不到可用的init.tcl

发布于 2024-10-30 00:20:47 字数 1104 浏览 0 评论 0原文

据我所知,cx_freeze 是唯一能够将 Python 脚本生成为 .exe 文件的应用程序。但是,我想在 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

As far as I'm aware, cx_freeze is the only app able to make Python scripts to .exe files. However, I would like to make a GUI exe in Python 3. And after freezing a simple Tkinter GUI and running the exe, I get the following error:

> _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.

I am using the simple setup cx_freeze option.

My cx_freeze exe bundle is save to the following directory:

C:\Users\User\Desktop\tkinter\build\exe.win32-3.1

Files are:

_ctypes.pyd
_tkinter.pyd
basicLABEL.exe
library.zip
python31.dll
tcl85.dll
tk85.dll
unicodedata.pyd

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

橙幽之幻 2024-11-06 00:20:47

我刚刚通过将位于 Python 3 安装目录中的 tcl8.5tk8.5 目录复制到 .exe 应用程序运行的文件夹。

I have just solved the problem myself by copying the tcl8.5 and tk8.5 directories, located in the Python 3 installation directory, into the .exe folder the app works.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文