5

我用 TCP、UDP 和 pygame 制作了多人 Pong 游戏。我正在使用的模块是:pygame、os、logging、threading、random、yaml (PyYAML) 和 socket

当使用 python2.7 从命令行运行游戏时,它运行良好,但是使用 py2app 编译的版本给我一个错误,即:

TypeError: Error when calling the metaclass bases
    function() argument 1 must be code, not str

我已经用谷歌搜索了,关于堆栈溢出的其他问题在我看来似乎没有任何意义。它给我错误的行是:

class Entity(pygame.Surface):
    def __init__(self, x, y, w, h, color=(255, 255, 255)):
        pygame.Surface.__init__(self, (w, h))

正如您可能已经理解的那样,它位于此示例的第一行。使用 pygame.Surface 时有些奇怪。虽然正如我所说,当我在命令行中运行程序时它可以工作!

我使用的 py2app 脚本是这样的:

from setuptools import setup

    APP = ['src/client.py']
    OPTIONS = {'argv_emulation': True, 'includes': ['EXTERNAL LIBRARY'], }

    setup(
        app=APP,
        options={'py2app': OPTIONS},
        setup_requires=['py2app'],
    )

提前致谢!

4

1 回答 1

3

自己找到了解决方案。早些时候在命令行中说:

RuntimeWarning: import transform: No module named _view (ImportError: No module named _view) 

显然,这使得 'pygame.Surface' 无法被导入并且未被计算机识别为功能。因此,错误消息毕竟是有道理的。

于 2013-04-26T14:08:56.137 回答