我刚刚开始使用pygame而且我有一些问题,这是我的代码......
导入pygame,sys 来自pygame.locals import *
pygame.init()
DISPLAYSURF = pygame.display.set_mode((400, 300))
pygame.display.set_caption('Hello World!')
while True:
for event in pygame.event.get():
if event.type == QUIT:
pygame.quit()
sys.exit()
pygame.display.update()
这是我不断得到的错误......
Traceback (most recent call last):
File "<frozen importlib._bootstrap>", line 1521, in _find_and_load_unlocked
AttributeError: 'module' object has no attribute '__path__'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Jason\Documents\Python\pygame.… line 1, in <module>
import pygame, sys
File "C:\Users\Jason\Documents\Python\pygame.… line 2, in <module>
from pygame.locals import *
ImportError: No module named 'pygame.locals'; pygame is not a package
所以我的问题是如何让pygame与python一起工作? python版本3.3.2 pygame版本:Python 3.3 pygame-1.9.2pre(64位)
答案 0 :(得分:1)
你的pygame安装没有成功,你需要做的是从here安装python 2.7
然后你需要重新安装你的pygame。如果您使用的是python 3.3,那么您将需要使用旧版本进行新安装,它不会删除您的新版本。确保它说安装是成功的。如果不起作用,请尝试重新启动和/或重新安装。祝你好运!