whenever i type import pygame into the editor it errors out but its supposed to give me my python version and my pygame version and I already installed pygame-ce
You have named your own script pygame.py. When you import pygame
, you’re importing your own script, not the pygame library. Rename your script to something else.
1 Like
thanks you