Python游戏开发! Mac完美安装pygame

pygame是python的2D游戏开发库, 优点是秉承了Python风格,简单好用

Python游戏开发! Mac完美安装pygame_第1张图片

最近在macOS High Sierra10.13.5上安装pygame时遇到了一些问题:

  • pygame无法检测鼠标键盘事件
  • 用户无法聚焦到游戏窗口
  • docker栏无法显示游戏图标

经过一晚上的折腾, 终于找到了正确的解决方法, 分享一下

解决方法:

  1. 通过brew安装依赖包
brew install sdl smpeg sdl_image sdl_mixer sdl_ttf portmidi hg sdl_mixer portmidi
  1. 安装xquartz
https://www.xquartz.org/
Python游戏开发! Mac完美安装pygame_第2张图片
  1. pip通过github源码安装pygame

这一步非常关键, 如果使用pip pygame直接安装, docker栏无法显示游戏的图标, 并且无法检测键盘事件

pip install https://github.com/pygame/pygame/archive/master.zip
Python游戏开发! Mac完美安装pygame_第3张图片
Python游戏开发! Mac完美安装pygame_第4张图片
  1. 官方Demo检验效果
python -m pygame.examples.aliens

你可能感兴趣的:(Python游戏开发! Mac完美安装pygame)