如何调试python .exe文件(pyinstaller)

时间:2014-03-07 15:02:47

标签: python-2.7 pyinstaller

我非常高兴使用pyinstaller制作Windows程序(.exe文件)。但我发现调试阶段非常耗时。

我想pyinstaller编译python代码,以便在崩溃时显示错误。

到目前为止,我已经制作了tryexcept

try:
    # My code goes here
except Exception as e:
    print "ERROR:"
    print type(e)     # the exception instance
    print e.args

但它没有给我完整的崩溃日志。

1 个答案:

答案 0 :(得分:1)

尝试使用traceback模块,尤其是print_...个功能。另外,尝试捕获BaseExceptions,所有异常都是从中派生出来的,有些异常不是从Exception派生的。