我正在linux中运行一段pygame代码,但会引发错误。
pygame 1.9.6
Hello from the pygame community. https://www.pygame.org/contribute.html
Traceback (most recent call last):
File "air_target.py", line 30, in <module>
screen = pg.display.set_mode((SCREEN_WIDTH, SCREEN_HEIGHT)) # 初始化窗口
pygame.error: Couldn't set console screen info
我正在Ubuntu 16.04.5 LTS
中运行,python版本是3.5.2 GCC VERSION
。
我搜索了错误代码,但没有找到它。然后,我查看了pygame document。
我尝试安装1.2.15版SDL来解决它,但是失败了。
hero_down_index = 3 # new
# init the game
screen = pg.display.set_mode((SCREEN_WIDTH, SCREEN_HEIGHT))
...
Windows中的代码正常运行。