labelImg windows10 安装

来源:互联网 发布:python中pyparsing 编辑:程序博客网 时间:2024/05/22 01:15

1、安装qt5

pip3 install pyqt5
但是运行

from PyQt5.QtWidgets import QApplicationTraceback (most recent call last):File "<stdin>", line 1, in <module>ImportError: DLL load failed: The specified module could not be found.
会出错。

解决办法:

It is because of missing Python3.dll (stub dll, that re-exports Python3x.dll functions, so that one version of extension can work for multiple versions of python).

If your Python distro doesn't bundle python3.dll, you can try one from WinPython (https://winpython.github.io/).

At least the 2017/04/01 versions should have it.

1) Download WinPython ('Zero' version suffices; must be same "main version" - 3.5/3.6 -and "bitness" - 32/64 - as your Python !!!).

2) Extract to some temp directory, take the python3.dll and stick it into your python dir, next to the python3x.dll.

3) Enjoy working QT


2、运行labelImg

会出错ImportError: No module named 'resource'

运行:pyrcc5 -o resources.py resources.qrc 解决

3、运行labelImg

python labelImg.py
或者
pip install labelImg
labelImg



原创粉丝点击