I installed a new version of IDLE, and I'm trying to install Pygame. I tried to use the pygame module, but when I did, the error message
Traceback (most recent call last): File "C:\Users\Kids\Desktop\Pygame Space Invaders\assets\Pygame_Space_Invaders.py", line 2, in import pygame ModuleNotFoundError: No module named 'pygame'
showed up. I'm fairly sure this is because pygame isn't installed with my current version of IDLE. I've tried numerous different pip commands trying to install it, but none of them seem to work.
'python3 -m pip install -U pygame --user', I've even tryed upgrading it with 'sudo pip3 install --upgrade pip', and 'sudo pip3 install pygame==2.0.0.dev6', and 'pip3.9 install pygame'.
Just for clarification, I already have it on my older version of IDLE, but I'm trying to get it on the newer version (3.9).