博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
出现“qt.qpa.plugin: Could not load the Qt platform plugin “xcb“ in ‘ ’even though it was found
阅读量:3972 次
发布时间:2019-05-24

本文共 1488 字,大约阅读时间需要 4 分钟。

出现“qt.qpa.plugin: Could not load the Qt platform plugin “xcb” in ‘ ’even though it was found

执行.py文件报错:

一个使用Pyqt5库的Python程序时,出现报错:

// 注意看最后一段报错信息Got keys from plugin meta data ("xcb")QFactoryLoader::QFactoryLoader() checking directory path "/usr/bin/platforms" ...loaded library "/home/XXX/.local/lib/python3.8/site-packages/cv2/qt/plugins/platforms/libqxcb.so"QObject::moveToThread: Current thread (0x2884760) is not the object's thread (0x5bf1580).Cannot move to target thread (0x2884760)qt.qpa.plugin: Could not load the Qt platform plugin "xcb" in "/home/XXX/.local/lib/python3.8/site-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.Available platform plugins are: xcb, eglfs, linuxfb, minimal, minimalegl, offscreen, vnc, wayland-egl, wayland, wayland-xcomposite-egl, wayland-xcomposite-glx, webgl.

很明显,从问题描述来看,说的是libxcb.so库“能够找到,但是无法加载”。

走的弯路的解决方案:

参照网址链接: .。

说是应该libxcb.so库链接不正确,也就是当加载libxcb.so库时,还需要加载libxcb-xinerama库,于是我就安装了这个库:

//安装libxcb-xinerama0库sudo apt-get install libxcb-xinerama0

但问题人仍然没解决,不过感谢博主的记录。

继续查找问题,发现参照网址链接: .

这个博主说是缺少/lib64/libQt5XcbQpa.so.5和
解决问题的关键在于,添加环境变量:export QT_DEBUG_PLUGINS=1。
但对于我的问题仍然无效,经过多次尝试配环境和补充libxcb.so库相关文件未果,最终决定卸载先opencv再重装,最终解决我的问题。

最终解决方案

//最终解决方法pip3 uninstall opencv-pythonpip3 install opencv-contrib-pythonsudo apt-get install python3-opencv

结语

遇到问题不断解决问题,相信最终会解决问题的!

最后,祝大家好运,都能成功解决bug,生活人仍然美好!!!

转载地址:http://zhtki.baihongyu.com/

你可能感兴趣的文章
Open Source 精萃
查看>>
Java EE 简介
查看>>
Weblogic 简介
查看>>
观察者模式 (Observer)
查看>>
Java 集合框架
查看>>
Weblogic 精萃
查看>>
Servlet 精萃
查看>>
XStream 精萃
查看>>
XStream 环境设置
查看>>
Git 分支
查看>>
Git 冲突
查看>>
Git Merging vs. Rebasing
查看>>
libreoffice/openoffice c/c++转换office格式为pdf
查看>>
Tomcat 7.0 64位免安装解压版 安装及配置
查看>>
Android 网络编程 初级入门(一)
查看>>
No enclosing instance of type Demo06 is accessible.
查看>>
计算机发展中的两大“杀手”
查看>>
MDK5(Keil for ARM) 工程建立时遇到的问题集锦
查看>>
Ubuntu下安装GTK+及Glade开发C应用界面
查看>>
assertion 'GTK_IS_WIDGET (widget)' failed的解决办法
查看>>