1
從這裏搜索是我的setup.py現在。當我建立使用-A模式(化名),我的應用程序,然後嘗試運行它,我得到這個錯誤:與tkinter和openpyxl和多個文件使用py2app?
在控制檯我發現這個錯誤:
13年8月21日10 :09:46.203 PM com.apple.launchd.peruser.501 [249]:([0x0-0x150d50c] .org.py.pythonmac.unspecified.notebook_tracker [24469])退出代碼:255
我的setup.py代碼:
"""
This is a setup.py script generated by py2applet
Usage:
python setup.py py2app
"""
from setuptools import setup
APP = ['notebook_tracker.app']
DATA_FILES = ['notebook_tracker.pyw']
OPTIONS = {'argv_emulation': True,
'packages': ['openpyxl','Tkinter']}
setup(
app=APP,
data_files=DATA_FILES,
options={'py2app': OPTIONS},
setup_requires=['py2app'],
py_modules=['DialogTemplate','reports','customer','schedule','admin','log_data','payment']
)