cx_Freeze ImportError:无法导入名称

时间:2010-02-08 16:37:02

标签: python python-3.x tkinter exe cx-freeze

我正在尝试使用ttk模块在tkinter中为GUI应用程序创建Windows的可执行文件。我使用cx_freeze创建了一个exe,但是当我在控制台中运行应用程序时,它给出了以下错误:

    D:\My Dropbox\python\SAR Calculator\src\dist_tk>
Traceback (most recent call last):

  File "C:\Python31\lib\site-packages\cx_Freeze\
7, in <module>

    exec(code, m.__dict__)

  File "sarcalc_tk.py", line 14, in <module>

  File "C:\Python31\lib\tkinter\__init__.py", li

    from tkinter import _fix

ImportError: cannot import name _fix

以下是我的代码中的第14行和第15行:

import tkinter as tk
import tkinter.ttk as ttk

1 个答案:

答案 0 :(得分:5)

看起来cx_freeze没有意识到它应该包含tkinter._fix模块,该模块由tkinter/__init__.py有条件地导入。您可以告诉它使用--include-modules命令行参数显式包含该模块,或includes

中的cx_Freeze.Executable setup.py关键字参数