I can't import Pygame. : pygame
https://www.reddit.com/r/pygame/comments/cflatn/i_cant_import_pygameWhen using PyCharm the modules it looks for by default are in the /venv (virtualenv) folder. By default, it only has pip and few essentials. If you open the integrated terminal in PyCharm and run $ pip install PyGame there, it will install into the /venv folder and then any project scripts will have access to it. If you don't want to use that terminal, run $ source venv/bin/activate from your ...