python打包android的app,出现 Could not load the Qt platform plugin “xcb“的解决方法

python打包android的app,出现 Could not load the Qt platform plugin “xcb“的解决方法,第1张

问题描述:

pytorch代码调试过程出现:

QObject::moveToThread: Current thread (0x1186a80) is not the object’s thread (0x272b130).
Cannot move to target thread (0x1186a80)

qt.qpa.plugin: Could not load the Qt platform plugin “xcb” in “/home/lzm/miniconda3/envs/torch1.0/lib/python3.6/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.
解决方法:

在.py文件前添加如下内容:(指定到torch1.0中qt的库文件路径)
注意改称自己的路径

envpath = ‘/home/pwj/anaconda3/lib/python3.7/site-packages/PySide2/Qt/plugins/platforms’
os.environ[‘QT_QPA_PLATFORM_PLUGIN_PATH’] = envpath

即将qt相关库libqxcb.so添加到环境变量中。
即可解决!

欢迎分享,转载请注明来源:内存溢出

原文地址:https://54852.com/langs/788821.html

(0)
打赏 微信扫一扫微信扫一扫 支付宝扫一扫支付宝扫一扫
上一篇 2022-05-05
下一篇2022-05-05

发表评论

登录后才能评论

评论列表(0条)

    保存