我已经在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?
答案 0 :(得分:1)
您需要使用点子 只需输入
python3 -m pip install pygame
这是一个有用的链接
http://medium.com/@louiscouture/tl-dr-pip-bcddaca44540 基本上,您对pip使用了错误的语法。