我的 py2app 应用程序无法打开。有什么问题吗?
我正在用 python、pygame 和 py2app 编写一个简单的游戏。 (我使用 python 2.6)当我在别名模式下构建游戏时,它工作正常,但是当我构建部署时,应用程序在午餐后立即崩溃。有人知道发生了什么事吗?
I'm writing a simple game with python, pygame and py2app. (I use python 2.6) When I build my game in alias mode, it works fine, but when I build for deployment, the app I get crashes immediately after lunching. Anyone know what's going on?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
为了对整个问题提供更彻底的答案,我将使用 Aliens.py 示例。
当内置于 OS X 中时,您会看到游戏快速初始化并退出时快速闪烁。打开控制台会显示一条错误消息,类似于
我认为问题是在打包过程中未包含默认字体。
例如,在 Aliens.py 示例中,将受支持的字体放入数据文件夹中,并将
self.font = pygame.font.Font( None ), 20)
更改为
self.font = pygame .font.Font( os.path.join('data', 'Copperplate.ttc'), 20)
这应该允许应用程序顺利编译和播放。
To provide a more thorough answer to this whole issue, I'm going to use the aliens.py example.
When built in OS X, you will see quick flash as the game quickly initializes and quits. Opening console reveals an error message similar to
I believe the issue is that the default font is not being included during the packaging process.
In the aliens.py sample for instance, throw a supported font into your data folder and change
self.font = pygame.font.Font( None ), 20)
to
self.font = pygame.font.Font( os.path.join('data', 'Copperplate.ttc'), 20)
This should allow the app to complie and play without issue.