解决ubuntu系统运行pyside2或6的问题

解决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“,通过一下操作,可有效解决该问题

  1. 输出详细的运行信息

    export QT_DEBUG_PLUGINS=1
    
  2. 找到报错的位置(仅针对本人系统报错):

    img

  3. 查看报错位置的缺失动态链接库

    ldd /home/brainiac/Qt/Tools/QtCreator/lib/Qt/plugins/platforms/libqxcb.so | grep "not found"
    
  4. 确认库文件是否存在

    ls /usr/lib/libxcb-cursor.so.0
    
  5. 不存在则进行安装(找准库文件实际名称)

    # 对于基于 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
    
  6. 安装好之后更新动态链接库缓存

    sudo ldconfig
    
  7. 重启应用程序,问题解决

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值