gpt4 book ai didi

docker - libGL 错误 : failed to load driver swrast in docker container

转载 作者:行者123 更新时间:2023-12-02 17:48:01 30 4
gpt4 key购买 nike

我有一个 docker 容器,我试图从中运行 pyqt 应用程序。除了一部分 GUI 无法呈现外,一切都运行良好。码头日志抛出这个:

libGL error: failed to load driver: swrast
X Error: GLXBadContext 169
Extension: 154 (Uknown extension)
Minor opcode: 6 (Unknown request)
Resource id: 0x6400003
X Error: BadValue (integer parameter out of range for operation) 2
Extension: 154 (Uknown extension)
Minor opcode: 3 (Unknown request)
Resource id: 0x0
...
QGLContext::makeCurrent(): Failed.

在我的 Dockerfile 中,我尝试安装几乎所有我能找到的可能相关的包,包括 mesa-utils .

就 docker-compose 文件而言,它是这样的:
version: '2'
services:
gui:
build: .
volumes:
- .:/usr/src
- /tmp/.X11-unix:/tmp/.X11-unix
command: /bin/bash -c "python start.py"
environment:
- DISPLAY=unix$DISPLAY
- QT_X11_NO_MITSHM=1
devices:
- "/dev/snd:/dev/snd"
- "/dev/dri:/dev/dri"
privileged: true

任何想法我可能会错过什么?

最佳答案

弄清楚了。我必须构建 gui具有硬件加速的 OpenGL 支持。有一个 repo ( https://github.com/gklingler/docker3d ),其中包含具有 nvidia 或其他图形驱动程序支持的 docker 图像。

另一个问题是,除非主机和容器具有 ,否则它对我不起作用。精确 同一个司机。为了解决这个问题,如果您在 linux 上运行,您可以运行以下 shell 脚本:

#!/bin/bash
version="$(glxinfo | grep "OpenGL version string" | rev | cut -d" " -f1 | rev)"
wget http://us.download.nvidia.com/XFree86/Linux-x86_64/"$version"/NVIDIA-Linux-x86_64-"$version".run
mv NVIDIA-Linux-x86_64-"$version".run NVIDIA-DRIVER.run

关于docker - libGL 错误 : failed to load driver swrast in docker container,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/44166269/

30 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com