0

Whenever I run my code in the IDLE's shell, it always comes out with this error:

Traceback (most recent call last):
  File "C:\Users\dELL\Desktop\MyProject\ReactionTimeProgram.py", line 2, in <module>
    import pygame
ImportError: No module named pygame

Is it telling me I haven't installed Pygame, because I have.

How can I fix this error? Best Regards RMR :)

R.M.R
  • 193
  • 1
  • 2
  • 9
  • Possible duplicate of [ImportError: No module named 'pygame'](https://stackoverflow.com/questions/18317521/importerror-no-module-named-pygame) – smoggers Sep 01 '18 at 19:30

1 Answers1

0

Are you running the proper version of python? When I run pygame with python2 instead of python3, that's what happens for me.

krm
  • 1
  • 2