MacOS上关于pygame安装的若干问题

1. SDL的安装

In file included from src/_numericsurfarray.c:23:
src/pygame.h:106:10: fatal error: 'SDL.h' file not found
#include 
^
1 error generated.
error: Setup script exited with error: command 'gcc' failed with exit status 1

出现如上错误的提示之后,可以执行:

brew install sdl sdl_image sdl_mixer sdl_ttf portmidi

pip install pygame

2. 读取文件错误,报错信息如下:pygame.error: File is not a Windows BMP file

在网上看到过很多解决方案貌似都不凑效,后来我发现可能是python版本的原因,于是从python3.5升级成3.6就可以了(conda install python==3.6),其中pygame用的版本是1.9.5。

你可能感兴趣的:(python)