我正在使用 py2app 将简单的 python pygame 文件转换为应用程序
我有两个文件,设置文件和一个 python 窗口文件,我输入“python /path py2app”并没有收到任何错误,但是当我打开 window.app 时,我得到下面的错误框:
当我单击“打开控制台”时,我看到发生的错误是:
控制台错误:([0x0-0x178178].org.pythonmac.unspecified.window[2347])退出代码:255
当我在终端中键入 python window.app 时,出现错误:
/Library/Frameworks/Python.framework/Versions/2.7/Resources/Python.app/Contents/MacOS/Python: can't find '__main__' module in '/Users/williamfiset/dist/window.app'
窗口.py:
import pygame,sys
from pygame.locals import *
import pygame._view
black = ( 0, 0, 0)
pygame.init()
size=[700,500]
screen=pygame.display.set_mode(size)
clock = pygame.time.Clock()
# -------- Main Program Loop -----------
while True:
for event in pygame.event.get():
if event.type == QUIT:
isRunning = False
pygame.quit()
sys.exit()
screen.fill(black)
pygame.display.flip()
clock.tick(20)
设置.py:
from setuptools import setup
APP = ['window.py']
OPTIONS = {'argv_emulation': True, 'includes': ['EXTERNAL LIBRARY'],}
setup(
app=APP,
options={'py2app': OPTIONS},
setup_requires=['py2app'],
)
当我用以下内容替换 window.py 文件时,我没有收到任何错误。窗口打开正常,没有错误。
import Tkinter
t = Tkinter.Tk()
t.geometry("700x500+300+100")
t.mainloop()