Best way to install pygame on OS X Lion?

前端 未结 5 1703
执笔经年
执笔经年 2020-12-17 14:52

I tried to install pygame via pip but this fails. Based on my google searches, it sounds like easy_install also fails.

I also checked out: http://www.pygame.org/wik

5条回答
  •  北荒
    北荒 (楼主)
    2020-12-17 15:25

    I had good luck with macports:

    1. Install macports if you don't already have it: http://www.macports.org/
    2. Install python via macports: sudo port install python26. I typed in the command it said at the end to set it as my default python installation. If you don't, then in step 4 you'll have to run the app a different way.
    3. Install pygame: sudo port install py26-game
    4. Run your pygame app: python main.py

提交回复
热议问题