qt.qpa.plugin:Qt プラットフォーム プラグイン「xcb」をロードできませんでした

プロンプト情報: 

QObject::moveToThread: Current thread (0x563e8bd48ed0) is not the object's thread (0x563e8ced9cf0).
Cannot move to target thread (0x563e8bd48ed0)

qt.qpa.plugin: Could not load the Qt platform plugin "xcb" in "/home/zxq/anaconda3/envs/open3d/lib/python3.9/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.

エラー メッセージには「/home/zxq/anaconda3/envs/open3d/lib/python3.9/site-packages/cv2/qt/plugins」と記載されています。


 解決策 1 : まず、「アプリケーションを再インストールすると、この問題が解決される可能性があります。」というプロンプト メッセージの提案に従い、元の opencv をアンインストールします。これで通常は解決できます。

pip uninstall opencv-python opencv-contrib-python

// 安装新的opencv 下面这两个都行,最新版本不行。
pip install opencv-python==3.4.3.18 opencv-contrib-python==3.4.3.18
pip install opencv-python==4.0.0.21 opencv-contrib-python==4.0.0.21

解決策 2 : 上記のディレクトリにある libqxcb.so ファイルを削除します。

解決策 3 : 別の解決策を試しました。python3.9 をアンインストールし、python3.7 をインストールしました。

おすすめ

転載: blog.csdn.net/jizhidexiaoming/article/details/131593377