0

我买了一台新电脑,并在尝试运行此代码时尝试安装 pygame

import pygame

pygame.init()

screen = pygame.display.set_mode((1176,674),0,32)

我收到这个错误

Traceback (most recent call last):
  File "/Users/nathaneuteneier/Documents/how", line 1, in <module>
    import pygame
  File "/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/site-packages/pygame/__init__.py", line 95, in <module>
    from pygame.base import *
ImportError: dlopen(/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/site-packages/pygame/base.so, 2): no suitable image found.  Did find:
    /Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/site-packages/pygame/base.so: no matching architecture in universal wrapper
4

1 回答 1

0

基本上是

     import error

这意味着解释器无法正确地将模块“导入”到您的程序中。此外,在交互模式下,如果您键入

    import pygame

那么结果是什么?无论如何,请尝试再次从网络下载 pygame 模块。 http://www.pygame.org/download.shtml 另外,该错误可能是由于 32 位和 64 位版本不兼容造成的。从上面提供的链接下载正确的版本。检查您使用的是哪个(32 或 64)位。在交互模式下输入:-

    import platform
    platform.architecture()

这将为您提供正在运行的 python 解释器的正确位顺序

于 2013-11-03T04:11:07.297 回答