解决ubuntu系统运行pyside2或6时出现的问题
当运行程序时,出现“qt.qpa.plugin: Could not load the Qt platform plugin “xcb” in “/usr/local/lib/python3.6/dist-packages/cv2/qt/plugins” even though it was found.
This application failed to start because no Qt platform plugin could be initialized. Reinstalling the application may fix this problem“,通过一下操作,可有效解决该问题
-
输出详细的运行信息
export QT_DEBUG_PLUGINS=1
-
找到报错的位置(仅针对本人系统报错):
-
查看报错位置的缺失动态链接库
ldd /home/brainiac/Qt/Tools/QtCreator/lib/Qt/plugins/platforms/libqxcb.so | grep "not found"
-
确认库文件是否存在
ls /usr/lib/libxcb-cursor.so.0
-
不存在则进行安装(找准库文件实际名称)
# 对于基于 Debian 的系统(如 Ubuntu): sudo apt-get install libxcb-cursor0 # 对于基于 Red Hat 的系统(如 Fedora): sudo dnf install libxcb-cursor # 对于基于 Arch 的系统(如 Arch Linux): sudo pacman -S xcb-util-cursor
-
安装好之后更新动态链接库缓存
sudo ldconfig
-
重启应用程序,问题解决