drawLine(self, Union[QPointF, QPoint], Union[QPointF, QPoint]): argument 1 has unexpected type ‘floa

在使用labelimg进行图像标注的时候,报错这样的如下代码:

drawLine(self, Union[QPointF, QPoint], Union[QPointF, QPoint]): argument 1 has unexpected type ‘floa_第1张图片

 原因:是labelimg的依赖包受到Python版本的限制,未能成功安装labelimg的依赖包导致

解决办法:

切换满足其依赖包的Python版本,建议切换为Python3.9,如Python3.9.16

因为只是做图标的标签标注工作,可以使用anaconda新建虚拟环境,安装labelimg

执行:

conda create -n python39 python=3.9.16

安装完成后,激活并进入python39虚拟环境

conda activate python39

安装labelimg

pip install labelimg

运行labelimg

labelimg

接下来就可以愉快地进行图片的标签标注了

drawLine(self, Union[QPointF, QPoint], Union[QPointF, QPoint]): argument 1 has unexpected type ‘floa_第2张图片

你可能感兴趣的:(python,开发语言)