我正在尝试在我的python virtualenv中设置pygame,以便我可以使用pygames Directinputs读取控制器数据。我在Windows 10上使用开发人员命令行(基本上是bash安装到windows系统上。)我安装了pygame,但是我收到了错误:pygame.error:没有可用的视频设备
ALSA lib confmisc.c:768:(parse_card) cannot find card '0'
ALSA lib conf.c:4292:(_snd_config_evaluate) function snd_func_card_driver
returned error: No such file or directory
ALSA lib confmisc.c:392:(snd_func_concat) error evaluating strings
ALSA lib conf.c:4292:(_snd_config_evaluate) function snd_func_concat
returned error: No such file or directory
ALSA lib confmisc.c:1251:(snd_func_refer) error evaluating name
ALSA lib conf.c:4292:(_snd_config_evaluate) function snd_func_refer returned
error: No such file or directory
ALSA lib conf.c:4771:(snd_config_expand) Evaluate error: No such file or
directory
ALSA lib pcm.c:2266:(snd_pcm_open_noupdate) Unknown PCM default
Traceback (most recent call last):
File "Controller.py", line 36, in <module>
screen = pygame.display.set_mode(size)
pygame.error: No available video device
我已经尝试使用命令sudo apt-get build-dep python-pygame来获取所有依赖项,似乎下载了大约180个新文件,我希望能解决它,但当然没有。我也试过卸载并重新安装pygame,但这也没有做任何事情。我认为这是一个SDL问题,或者至少谷歌到目前为止已经产生了这个问题。我尝试使用
import os
os.environ["SDL_VIDEODRIVER"] = "directx"
和其他SDL_VIDEODRIVER标志,但它们似乎都没有改变任何东西。有关如何使代码工作的任何建议?我的代码只是pygames joystick对象的示例程序,所以如果你需要引用Here,那就是。