MacOSX上的Pygame模块启动

时间:2017-12-12 13:44:20

标签: python pygame init

我正在学习如何使用macosx(High Sierra)在python 3.5上使用pygame模块。我安装了模块但每次启动显示时都会收到错误消息。例如:

import pygame
screen = pygame.display.set_mode((1000,1000)) #dimensions can be 
anything

(Error I get)
AttributeError: module 'MacOS' has no attribute 'WMAvailable'

During handling of the above exception, another exception occurred:

Traceback (most recent call last):
File "/Users/user1/Documents/pygamet/pygametest.py", line 3, in 
<module>
screen = pygame.display.set_mode((1000,1000))
SystemError: <built-in function set_mode> returned a result with an 
error set

无论我做什么(在它之前添加pygame.init()等),错误仍然存​​在。)

我知道pygame可能无法在python3.5上运行,但我之前看到它在我使用的同一型号计算机上运行。

0 个答案:

没有答案