如何在安装了 python 2.7 的 Mac 上安装 pygame?
How to install pygame on Mac with python 2.7 installed?
我想在 Mac 10.6.8 上安装 pygame。
我设法安装了 python 2.7.9 并使其稳定。
我尝试安装不同版本的 pygame 但 none 有效:例如 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的官方网站上进一步查看,但没有解决任何问题。
有人遇到同样的问题吗?如何解决?
请注意,我已经查看了 Whosebug 上的其他类似问题。
似乎存在一些二进制不兼容的问题。也许你可以下载源代码并编译它:https://bitbucket.org/pygame/pygame
经过大量搜索,我的解决方案描述为 in this link,使用 homwbrew 和 pip。
- 如果尚未从站点安装 XQuarts,请安装它
- 安装自制软件 (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
- 使用命令
/usr/local/share/python3/easy_install pip
安装 pip
(在我的例子中文件夹是 /usr/local/Cellar/python3/3.4.3_2/bin
)
/usr/local/share/python3/pip install hg
+http://bitbucket.org/pygame/pygame
我想在 Mac 10.6.8 上安装 pygame。
我设法安装了 python 2.7.9 并使其稳定。
我尝试安装不同版本的 pygame 但 none 有效:例如 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的官方网站上进一步查看,但没有解决任何问题。
有人遇到同样的问题吗?如何解决?
请注意,我已经查看了 Whosebug 上的其他类似问题。
似乎存在一些二进制不兼容的问题。也许你可以下载源代码并编译它:https://bitbucket.org/pygame/pygame
经过大量搜索,我的解决方案描述为 in this link,使用 homwbrew 和 pip。
- 如果尚未从站点安装 XQuarts,请安装它
- 安装自制软件 (link here)
- 在终端 中使用命令
- 安装 Mercurial 版本控制系统:
brew install mercurial
- 对git版本控制系统做同样的事情,需要一个依赖包:
brew install git
- 现在安装Pygame的所有依赖:
brew install sdl sdl_image sdl_mixer sdl_ttf smpeg portmidi
- 使用命令
/usr/local/share/python3/easy_install pip
安装pip
(在我的例子中文件夹是/usr/local/Cellar/python3/3.4.3_2/bin
) /usr/local/share/python3/pip install hg
+http://bitbucket.org/pygame/pygame
brew install python3
安装python3