使用 cx_freeze 将脚本转换为 .exe 时如何包含 tkinter?

Posted

技术标签:

【中文标题】使用 cx_freeze 将脚本转换为 .exe 时如何包含 tkinter?【英文标题】:How to include tkinter when using cx_freeze to convert script to .exe? 【发布时间】:2017-03-28 02:02:30 【问题描述】:

我正在使用 cx_freeze 将 python 文件传输到 exe。问题是当我在 setup.py 中排除 tkinter 时,我可以成功生成 exe 文件,但是当执行 exe 文件时,它显示No Module named tkinter

build_exe_options = "packages": ["os","numpy","time","optparse","linecache","pandas",
                     "matplotlib","PIL"], "excludes": ["tkinter"]

但是当我尝试包含tkinter时,它就是无法生成exe文件。

build_exe_options = "packages": ["os","numpy","time","optparse","linecache","pandas",
                     "matplotlib","PIL","tkinter"]
File "C:\Users\changchun_xu\AppData\Local\Programs\Python\Python36-32\lib\os.py", line 669, in __getitem__
    raise KeyError(key) from None
KeyError: 'TCL_LIBRARY'

【问题讨论】:

你确定它说的是"No Module named tkinter".而不是_tkinter吗?也许还检查this问题 感谢您的帮助!我又看了一下信息,原来的信息是“No module named 'tkinter'” 也许您可以尝试遵循that 建议的问题,方法是在 setup.py 中键入 os.environ['TCL_LIBRARY'] = r'C:\Program Files\Python36-32\tcl\tcl8.6'os.environ['TK_LIBRARY'] = r'C:\Program Files\Python36-32\tcl\tk8.6'注意:将路径替换为您的实际 tcl 和 tk 路径。 我照你说的做了,我添加了 os.environ['TCL_LIBRARY'] = r'C:\python\tcl\tcl8.6' os.environ['TK_LIBRARY'] = r 'C:\python\tcl\tk8.6' 。并且可以将 tkinter 添加到包中: build_exe_options = "packages": ["os","re​​","numpy","optparse","tkinter","time","linecache","pandas"," matplotlib","optparse","PIL","glob"]。这次我可以生成 exe,但是当执行 exe 文件时,它说“import _tkinter # 如果失败,您的 Python 可能没有配置为 TK”,您在第一条评论中提到了这一点。我重装了python,还是一样的问题 @abccd,我不知道你怎么知道我可能会遇到像“_tkiner”这样的问题? 【参考方案1】:

您必须对 setup.py 进行两次修改才能正常工作:

    设置TCL-LIBRARYTK_LIBRARY 环境变量。 (你已经这样做了)

    tcl86t.dlltk86t.dll 添加到您的include_files 参数

所以 setup.py 应该是这样的:

import os
from cx_Freeze import setup, Executable

os.environ['TCL_LIBRARY'] = 'c:/python36/tcl/tcl8.6'
os.environ['TK_LIBRARY'] = 'c:/python36/tcl/tk8.6'

# Dependencies are automatically detected, but it might need
# fine tuning.
buildOptions = dict(
    packages = [],
    excludes = [],
    include_files=['c:/python36/DLLs/tcl86t.dll', 'c:/python36/DLLs/tk86t.dll']
)

import sys
base = 'Win32GUI' if sys.platform=='win32' else None

executables = [
    Executable('editor.py', base=base)
]

setup(name='editor',
      version = '1.0',
      description = '',
      options = dict(build_exe = buildOptions),
      executables = executables)

【讨论】:

感谢您的帮助!对于我的问题,matplotlib 似乎调用了“TK”,实际上我只需在我的 python 文件中添加 matplotlib.use("Agg") 就可以解决问题。下次如果我必须使用“TK”,我会尝试你的建议。

以上是关于使用 cx_freeze 将脚本转换为 .exe 时如何包含 tkinter?的主要内容,如果未能解决你的问题,请参考以下文章

使用 cx_freeze 将 .py 转换为 .exe 时出错

使用cx_Freeze将VPython程序转换为exe

将 .py 转换为 .exe 时出现 cx_Freeze 错误

类型错误:列表索引必须是整数或切片,而不是 str 尝试使用 cx_Freeze 将 .py 文件转换为 .exe 时

使用 cx_freeze 转换为 *.exe 时出现 SSL 异常

使用 cx_Freeze 将第一个程序制作成 exe 文件