ubuntu16.04安装PyQt5报错及解决(超级简单有效)
Posted AI算法与图像处理
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了ubuntu16.04安装PyQt5报错及解决(超级简单有效)相关的知识,希望对你有一定的参考价值。
采用下面的pip安装,会导致报错
pip install PyQt5
测试用例:
import sys
from PyQt5 import QtWidgets
app = QtWidgets.QApplication(sys.argv)
button = QtWidgets.QPushButton(“Hello, World!”)
button.setFixedSize(100, 50)
button.show()
qt.qpa.plugin: Could not load the Qt platform plugin “xcb” in “” even though it was found.
。。。下面还要一堆问题
解决方法:
如果你采用了上面的安装方式
首先需要把安装的pyqt相关的包全部删除
比如
pip uninstall PyQt5
pip uninstall PyQt5-tools
然后使用conda进行安装即可
conda install pyqt
亲测有效!!!
有用记得点赞哦!
欢迎关注 “AI算法与图像处理”,共同学习成长
以上是关于ubuntu16.04安装PyQt5报错及解决(超级简单有效)的主要内容,如果未能解决你的问题,请参考以下文章
Ubuntu14.04(估计16.04也可以用,参照的就是16.04)+opencv + caffe(GPU版) + cuDnn超详细包括报错