arm主板上运行QT程序提示qt.qpa.plugin: Could not load the Qt platform plugin "wayland" in "/opt/qt5.15.2/plugins" even though it was found.
时间: 2023-12-15 13:33:24 浏览: 197
Ubuntu18.04下解决Qt出现qt.qpa.plugin:Could not load the Qt platform plugin “xcb“问题
5星 · 资源好评率100%
这个问题通常是由于缺少wayland-egl库导致的。你可以尝试安装wayland-egl库来解决这个问题。以下是解决思路:
1.首先,确认你的系统是否已经安装了wayland-egl库。你可以使用以下命令来检查:
```shell
ldconfig -p | grep wayland-egl
```
如果没有输出,则说明你的系统没有安装wayland-egl库。
2.如果你的系统没有安装wayland-egl库,你可以使用以下命令来安装:
```shell
sudo apt-get install libwayland-egl1
```
3.安装完成后,重新运行你的QT程序,看看是否还会出现qt.qpa.plugin: Could not load the Qt platform plugin "wayland" in "/opt/qt5.15.2/plugins" even though it was found.的错误提示。
如果以上方法无法解决问题,你可以尝试升级你的QT版本或者重新编译QT库。
阅读全文