pygame は Python でゲームを作るためのパッケージである。
pip でインストールできる。動作確認は
python3 -m pygame.examples.aliens
python.org の Python ではうまくいったが,Homebrew 版 Python では音が出ても画像が出ない。対策:
pip3 uninstall pygame
brew install sdl2 sdl2_gfx sdl2_image sdl2_mixer sdl2_net sdl2_ttf
git clone https://github.com/pygame/pygame.git
cd pygame
python3 setup.py -config -auto -sdl2
python3 setup.py install