ubuntu16.04 LabelImg安装问题PYQT4

参考:https://blog.csdn.net/zong596568821xp/article/details/80395079

遇到的问题主要是在安装完成后打开LabelImg时会提示

ImportError: No module named PyQt4

这个也是之前遇到过还未解决的问题。

问题原因:应该是环境问题,电脑里存在不同版本的python,如2.7和3.5的冲突,导致安装上pyqt的与打开的python不是一个

解决方法:安装anaconda,用anaconda直接配置pyqqt4的环境

conda install pyqt=4。

安装完成后不再报PyQt的错,但是出现

Traceback (most recent call last):
  File "/home/thr/anaconda2/bin/labelImg", line 7, in
    from labelImg.labelImg import main
  File "/home/thr/anaconda2/lib/python2.7/site-packages/labelImg/labelImg.py", line 35, in
    from libs.stringBundle import StringBundle
  File "/home/thr/anaconda2/lib/python2.7/site-packages/libs/stringBundle.py", line 4, in
    import resources
ImportError: No module named resources
不知道什么原因,估计时anaconda中的环境缺少那个resources.py,

解决方法:简单粗暴的从外面搜了一个resources.py,直接复制粘贴进/home/thr/anaconda2/lib/python2.7/site-packages/libs/里

成功打开LabelImg

你可能感兴趣的:(ubuntu16.04 LabelImg安装问题PYQT4)