https://bugs.kde.org/show_bug.cgi?id=446421
--- Comment #1 from knoll...@gmail.com --- The .py python script I ran roughly looks like this: " import pygame from pygame.locals import * pygame.init() screen = pygame.display.set_mode((500, 500), flags=FULLSCREEN) clock = pygame.time.Clock() run = True while run: for event in pygame.event.get(): if event.type == QUIT: run = False pygame.display.update() clock.tick(60) pygame.quit() " This should really not be run this on one's main machine. It might cause the same error as I have. I didn't find any solution yet. You would also need the pygame library to be installed. You should be able to install it with "pip install pygame". If it doesn't work you can read the pygame docs. -- You are receiving this mail because: You are watching all bug changes.