如何解决“ pygame.error:无法设置控制台屏幕信息”

时间:2019-05-27 07:30:02

标签: python python-3.x pygame

我正在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中的代码正常运行。

0 个答案:

没有答案