【发布时间】:2018-12-25 18:20:27
【问题描述】:
我已经在 Mac 上使用 pip 在 python2 中成功安装了 pygame。但是我无法在python3中安装pygame。
输入以下命令后:
$ brew install hg sol sdl_image sdl_ttf
$ brew install sdl_mixer portmidi
$ pip3 install --user hg_http://bitbucket.org/pygame/pygame
我明白了:
Failed building wheel for pygame
Running setup.py clean for pygame
Failed to build pygame
Installing collected packages: pygame
Running setup.py install for pygame ... error
还有:
36 warnings and 8 errors generated.
error: command 'clang' failed with exit status 1
我已确保安装了 wheel 和最新版本的 setuptools。我再次尝试使用命令:
$ pip3 install pygame
我还有:
Failed building wheel for pygame
Running setup.py clean for pygame
Failed to build pygame
Installing collected packages: pygame
Running setup.py install for pygame ... error
我尝试过的其他语法:
$ pip3 install Pygame==1.9.3
$ python3 -m pip install pygame
但是它们都产生了同样的错误。
那么,如何在python3中成功安装pygame呢?
【问题讨论】:
-
哪个 Python 版本?
-
Python 3.7.0 版本
标签: python-3.x macos pygame