我正在尝试使用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
最佳答案
看起来cx_freeze没有意识到它应该包含tkinter._fix
模块,该模块由tkinter/__init__.py
有条件地导入。您可以告诉它在--include-modules
中使用includes
命令行参数或cx_Freeze.Executable
的setup.py
关键字参数显式地包含该模块。
关于python - cx_Freeze ImportError : cannot import name,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/2223128/