当我尝试运行此代码时,我买了一台新电脑并尝试使用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
答案 0 :(得分:0)
基本上是
import error
解释器无法将模块正确“导入”到您的程序中。 此外,在交互模式下,如果键入
import pygame
那么结果是什么?
无论如何,请尝试从Web再次下载pygame模块。
http://www.pygame.org/download.shtml
此外,错误可能是由于32位和64位版本的不兼容性。从上面提供的链接下载正确的版本。检查您使用的是哪个(32或64)位。在交互模式中键入: -
import platform
platform.architecture()
这将为您提供正在运行的python解释器的正确位顺序