我有这个设置:
$ python -V
Python 2.7.2+
$ python -c "import pygame; print pygame.__version__"
1.9.1release
当我运行 pygame 脚本时,我收到此错误:
Traceback (most recent call last):
File "/home/santosh/tmp/pygameHelloWorld.py", line 8, in <module>
windowSurface = pygame.display.set_mode((500, 400), 0, 32)
pygame.error: No available video device
我正在使用 Ubuntu 并使用 apt-get 安装 pygame。此外,我已经安装了这个pygame wiki 页面上提到的所有依赖项。