I am new to Python and am working my way through Python Crash Course by Eric Matthes. I'm on the first project and can't get pygame to work. I've followed all instructions, tried everything I've seen on Stack Overflow and still stuck! I am on a Macbook 2020, Python 3.8.5
In IDLE when I am trying to run my code I receive this error connected to my 'import pygame' command:
ModuleNotFoundError: No module named 'pygame'
Then in Terminal when I go to verify I have pygame installed, I get this:
(base) @MacBook-Pro ~ % pip install pygame
Requirement already satisfied: pygame in ./opt/anaconda3/lib/python3.7/site-packages (2.0.0.dev10)
Where do I go from here? Thank you!