我正在尝试在我的 Windows 8 笔记本电脑上使用 Pygame 和 Python 3.3。Pygame 安装得很好,当我import pygame
导入时也很好。虽然当我尝试执行这个小代码时:
import pygame
pygame.init()
size=[700,500]
screen=pygame.display.set_mode(size)
我收到此错误:
Traceback (most recent call last):
File "C:\Users\name\documents\python\pygame_example.py", line 3, in <module>
pygame.init()
AttributeError: 'module' object has no attribute 'init'
我曾经pygame-1.9.2a0-hg_56e0eadfc267.win32-py3.3
安装过 Pygame。Pygame 安装在此位置 'C:\PythonX' 中,Python 3.3 安装在此位置 'C:\Python33' 中。我看过其他有相同或类似问题的人,但似乎并没有解决错误。安装 Pygame 时我做错了什么吗?还是不支持windows 8?