我想使用py2app打包一個混合的Python/C++應用程序。我的setup.py是如何獲得更多關於py2app錯誤的信息?
from setuptools import setup
setup(app=['voxpopuli.py'],data_files=[],options=
{'py2app'{'argv_emulation':True}},setup_requires=['py2app'])
,我通過
python setup.py py2app --no-strip --iconfile /Users/irving/otherlab/other/bin/OLicon.icns --resources /opt/local/lib/Resources/qt_menu.nib
此完成,沒有警告或錯誤,但是當我嘗試運行resuling應用程序會彈出一個窗口,簡單地說,「voxpopuli錯誤調用py2app 」。它有一個「打開控制檯」按鈕,但唯一的控制檯消息
9/21/12 11:43:14.691 AM voxpopuli[52765]: voxpopuli Error
9/21/12 11:43:15.926 AM com.apple.launchd.peruser.501[158]: ([0x0-0x177d77c].org.pythonmac.unspecified.voxpopuli[52765]) Exited with code: 255
是否有標準的方式來獲得更多的信息出來py2app,以幫助診斷這個錯誤?