2

我正在尝试冻结我的 Python3.2 项目并在运行生成的可执行文件后出现以下错误:

调用 format_exception 时引发异常。“str”对象没有属性“__cause__”。原始例外:无法导入名称格式。

该项目具有三个带有 __init__.py 文件的内部包/模块。它使用外部包:sqlite3、PyQt4、matplotlib、numpy、scipy。

这是我的 setup.py:

from cx_Freeze import setup, Executable

includes = ['re', 'PyQt4', 'os', 'scipy', 'csv', 'sqlite3', 'itertools', 'numpy', 'sys', 'matplotlib']
excludes = []
packages = []
path = []

GUI2Exe_Target = Executable(
    # what to build
    script = "xshape_report.py",
    #initScript = None,
    base = 'Win32GUI',
    #targetDir = r"dist",
    #targetName = "xshape_report.exe",
    #compress = True,
    #copyDependentFiles = True,
    #appendScriptToExe = False,
    #appendScriptToLibrary = False,
    icon = None
    )

setup(

    version = "0.1",
    description = "Reporting system",
    author = "Katya",
    name = "Xshape report",

    options = {"build_exe": {"includes": includes,
                             "excludes": excludes,
                             "packages": packages,
                             "path": path
                             }
               },

    executables = [GUI2Exe_Target]
    )

如果我离开,同样的错误包括空。可能是什么原因?

4

1 回答 1

2

从邮件列表中复制我的答案以帮助其他搜索此内容的人:

“无法导入名称格式”位是您的应用程序存在的问题。可能有一些模块没有检测到它需要复制。

它应该显示有关错误发生位置的更多详细信息,但 cx_Freeze 中存在导致'str' object has no attribute '__cause__'消息的错误。这在开发版本中已修复,因此如果您使用它,您将获得适当的回溯。希望我们能尽快发布新版本。

对于未来的人:cx_Freeze 4.2.3 存在这个问题,我猜修复的版本将是 4.3.0。如果您在更高版本中遇到此 ( no attribute '__cause__'),请确保已为它提交了错误。

于 2012-04-03T19:21:19.160 回答