Mac 安装Pygame小记(亲测可行 2019-03-01)
原文:https://blog.csdn.net/luoyayun361/article/details/81665622
-
在安装 Pygame 之前,需要先安装 Pygame的依赖包,这里通过 Homebrew来安装依赖的库。
【brew install sdl_mixer portmidi】 -
安装完后就可以开始安装 Pygame 了
【pip3 install pygame】 -
验证
3.1 命令输入python进入环境
3.2 键入命令 【import pygame】,回车
3.3 如果出现下列2行内容,表示已经安装成功。
pygame 1.9.4
Hello from the pygame community. https://www.pygame.org/contribute.html
网友评论