“Python已停止工作” - 在Windows上的PyGame

时间:2014-07-20 03:02:49

标签: windows pygame python-3.4

无法让我的基本游戏启动 - 可能有五分之一的游戏启动 - 其他人立即结束“Python已停止工作”。

import pygame, sys
from pygame.locals import *

pygame.init()
DISPLAYSURF = pygame.display.set_mode((400, 300))
pygame.display.set_caption('Hello World!')
while True: # main game loop
    for event in pygame.event.get():
        if event.type == QUIT:
            pygame.quit()
            sys.exit()
    pygame.display.update()

1 个答案:

答案 0 :(得分:1)

根据furas的建议尝试在python上使用旧版本。当我在我的笔记本电脑上运行你的代码它启动正常,我使用python 2.7

如果您使用的是python 3.4.x,pygame将无效,其最新版本仅在3.3.x上运行。

我已经多次运行你的程序,并且它每次运行时都有一个带有标题" Hello World"的框。