0
我一直很高興與使用pyinstaller使Windows程序(.exe文件。但我發現調試階段非常耗時。如何調試蟒蛇.exe文件(pyinstaller)
我想pyinstaller編譯Python代碼,所以如果它崩潰,也將顯示錯誤。
到目前爲止,我已經做出了try
和except
try:
# My code goes here
except Exception as e:
print "ERROR:"
print type(e) # the exception instance
print e.args
但它不給我完全的崩潰日誌。