0

I downloaded Pygame from GitHub because the pip3 download method resulted in high CPU usage. So after downloading it, I ran setup.py and a folder 'Pygame_master' was created in my downloads folder. However, when I try 'import Pygame' it says there is no such module. Is there somewhere specific I should put the folder?

EDIT: When I run print(sys.path) one of the results is '/Applications/Python 3.7/pygame-master' so now I have no clue why this wouldn't be working.

1 Answer 1

0

Python can only find Pygame if it is in the Python3.7 folder in Applications. Because it is instead in Downloads, python can’t find the module. Try moving pygame-master to /Applications/Python3.7

You must log in to answer this question.

Not the answer you're looking for? Browse other questions tagged .