I need help... I have been trying to uninstall and reinstall pygame but VS Code still doesn't recognize it.
I am using VS Code and it's python 3.13 (Yes that's what it says at the bottom right corner). I typed in terminal py -3.13 -m pip install pygame and it says requirement already satisfied. However, whenever I run the code it gives a ModuleNotFoundError saying there is no module named "pygame".
If I try to install pygame without stating the python version it will attempt to install but gives ERROR: Failed to build 'pygame' when getting requirements to build wheel.
If I use python 3.13 in terminal and type in import python it works normally. (I got the message Hello from the pygame community)
I also installed the extension pip manager and it shows that pygame 2.6.1 is already there.
I tried to use venv and installed pygame again but it still showed the same error.