Created
July 31, 2022 10:02
-
-
Save AAdewunmi/358a57e3ad9a9508ee80e89628a5bd8f to your computer and use it in GitHub Desktop.
How to Install and Setup Pygame for Mac OSX
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Install pip (package installer for python) | |
1. Open a terminal window and type: | |
$ curl https://bootstrap.pypa.io/get-pip.py > get-pip.py | |
2. Install Pygame: | |
Type into previously opened terminal: | |
$ sudo pip install pygame | |
3. Verify Installation | |
Open another terminal window and type: | |
$ python3 | |
$ import pygame | |
... Enjoy 😎 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment