如何在安装了python 2.7的Mac上安装pygame?

时间:2015-02-02 23:18:04

标签: python macos pygame

我想在Mac 10.6.8上安装pygame 我设法安装python 2.7.9并使其稳定 我尝试安装不同版本的pygame但没有工作:例如使用1.9.1它给了我这个错误:

输出:

Traceback (most recent call last):
 File "/.../Desktop/example.py", 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

我不知道这是计算机体系结构的问题(32/64位)还是因为python和pygame的版本不匹配。

我试图在pygame的官方网站上进一步查看,但没有解决问题。

有没有人有同样的问题?怎么解决?

请注意,我已经在stackoverflow上查看了其他类似的问题。

2 个答案:

答案 0 :(得分:0)

似乎存在一些二进制不兼容的问题。也许你可以下载源代码并编译它:https://bitbucket.org/pygame/pygame

答案 1 :(得分:0)

经过大量搜索之后,我使用homwbrew和pip描述了in this link的解决方案。

  • 如果尚未从网站安装XQuarts
  • 安装homebrew(link here
  • 在终端
  • 中使用命令brew install python3安装python3
  • 安装Mercurial版本控制系统:brew install mercurial
  • 对git版本控制系统执行相同操作,这是依赖包所需的:brew install git
  • 现在安装Pygame的所有依赖项:brew install sdl sdl_image sdl_mixer sdl_ttf smpeg portmidi
  • 使用pip命令安装/usr/local/share/python3/easy_install pip(在我的情况下,文件夹为/usr/local/Cellar/python3/3.4.3_2/bin
  • /usr/local/share/python3/pip install hg + http://bitbucket.org/pygame/pygame