게임에 소리를 넣기 위해서 window에서는 winsound를 이용하면 되는데 mac에서는 pygame을 설치해야한다.
그마저도 맥에서 바로 pygame을 설치하면
ERROR: Command errored out with exit status 1
error: command 'gcc' failed with exit status 1
ERROR: Failed building wheel for pygame
error: command 'gcc' failed with exit status 1----------------------------------------
ERROR: Command errored out with exit status 1:
이렇게 긴 오류 메세지가 뜬다.
검색을 해보니 pygame 설치 전에 의존성 있는 모듈을 먼저 설치해야 된다고 한다.
$ brew install sdl sdl_image sdl_mixer sdl_ttf smpeg portmidi
입력 후 설치
$ pip install pygame
해주면 깔끔하게 설치된다.