LabelMe安装报错解决方案

通过pip命令安装过程中可能会出现以下问题:
![在这里插入图片描述](https://img-blog.csdnimg.cn/20200817225350288.png#pic_center
原因是由于setuptools版本过高导致的,只需要卸载并重新下载低版本即可。
卸载:

conda uninstall setuptools

重新安装:

conda install setuptools==19.2

之后重新安装label即可:

conda create --name=labelme python=3.x
activate labelme
conda install pyqt
pip install labelme

你可能感兴趣的:(bug)