作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我目前正在尝试让 pygame 在我的 Ubuntu 20.04 机器上运行。收到错误“没有可用的视频设备”后,我添加了以下代码行:
import os
os.environ['SDL_VIDEODRIVER'] = 'dummy'
现在错误信息消失了,但窗口仍然没有弹出......
最佳答案
因为设置 SDL_VIDEODRIVER
至"dummy"
它实际上不会渲染任何东西。 As stated at the bottom of the wiki :
If you need an event queue but don't want a real window, try putenv("SDL_VIDEODRIVER=dummy") before you call SDL_SetVideoMode. I find this useful in apps that use SDL facilities, but don't need a real video output device.
SDL_VIDEODRIVER
的值。到 Linux 视频驱动程序之一,可以找到
here .
关于python - pygame:不打开窗口/'pygame.error: No available video device',我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/64379965/
我是一名优秀的程序员,十分优秀!