原本是要安装easyGUI,但是教学视频都是在window系统下安装的,上网一通搜,一通试,愣是没用。
很多答案都是旧版,解决不了问题。倒腾了一天都不行!!!
最后发现,还是官网最靠谱,虽然是全英文,但是一分钟解决问题!!!
附上链接:
https://www.pygame.org/wiki/GettingStarted#Pygame%20Installation
mac下安装pygame:
# create a virtualenv called 'anenv' and use it.
python3 -m virtualenv anenv
. ./anenv/bin/activate
# venvdotapp helps the python be a mac 'app'. So the pygame window can get focus.
python -m pip install venvdotapp
venvdotapp
python -m pip install pygame
# See if pygame works with the oo module, and the aliens example.
python -m pygame.examples.aliens
按照这里的代码,一行一行依次输入,最后一行是测试是否安装好了,成功的话会跳出一个外星人小游戏的界面。