Comment on Can someone help me get Pygame working?
lokalhorst@feddit.org 4 days agoNever use your system Python. It is used by your OS and should not be tempered with. Use a virtual environment instead. Read this whole comment in stack overflow stackoverflow.com/…/how-do-i-solve-error-external…
ComicalMayhem@lemmy.world 4 days ago
I followed the instructions on the page but I still get the “module not found” error when running the file I made and the pygame.examples.aliens
lokalhorst@feddit.org 4 days ago
Did you activate the environment before running your Python script using
source venv/bin/acticate? Replacevenvwith the directory of the environment.