关于macos:如何在macos下使用brew安装labelImg

11次阅读

共计 369 个字符,预计需要花费 1 分钟才能阅读完成。

labelImg 是个用于图片标注的开源软件,以后曾经正式做为 Label Studio 的一部分,原本装置一个软件应该绝对简略的事件,但首次接触却接管到了一大堆装置文档。就索性记录一下吧:

克隆我的项目

先把我的项目 clone 到本地: git clone --depth=1 https://github.com/HumanSignal/labelImg.git,实现后而后进入我的项目文件夹 labelImg

执行装置过程

labelImg 举荐 python 的版本为 3 以上,pyqt5 的版本为 5.15.2,命令如下:

$ brew install python3
$ pip3 install pipenv
$ pipenv run pip install pyqt5==5.15.2 lxml
$ pipenv run make qt5py3
$ pipenv run python3 labelImg.py
正文完
 0