parent
df783f5acf
commit
8deb8728f9
|
@ -105,9 +105,9 @@ python PPOCRLabel.py --kie True # [KIE mode] for [detection + recognition + keyw
|
||||||
#### 1.2.3 Build and Install the Whl Package Locally
|
#### 1.2.3 Build and Install the Whl Package Locally
|
||||||
Compile and install a new whl package, where 1.0.2 is the version number, you can specify the new version in 'setup.py'.
|
Compile and install a new whl package, where 1.0.2 is the version number, you can specify the new version in 'setup.py'.
|
||||||
```bash
|
```bash
|
||||||
cd PaddleOCR/PPOCRLabel
|
cd ./PPOCRLabel
|
||||||
python3 setup.py bdist_wheel
|
python3 setup.py bdist_wheel
|
||||||
pip3 install dist/PPOCRLabel-1.0.2-py2.py3-none-any.whl
|
pip3 install dist/PPOCRLabel-2.1.2-py2.py3-none-any.whl
|
||||||
```
|
```
|
||||||
|
|
||||||
|
|
||||||
|
|
|
@ -104,9 +104,9 @@ python PPOCRLabel.py --lang ch
|
||||||
编译与安装新的whl包,其中1.0.2为版本号,可在 `setup.py` 中指定新版本。
|
编译与安装新的whl包,其中1.0.2为版本号,可在 `setup.py` 中指定新版本。
|
||||||
|
|
||||||
```bash
|
```bash
|
||||||
cd PaddleOCR/PPOCRLabel
|
cd ./PPOCRLabel
|
||||||
python3 setup.py bdist_wheel
|
python3 setup.py bdist_wheel
|
||||||
pip3 install dist/PPOCRLabel-1.0.2-py2.py3-none-any.whl -i https://mirror.baidu.com/pypi/simple
|
pip3 install dist/PPOCRLabel-2.1.2-py2.py3-none-any.whl -i https://mirror.baidu.com/pypi/simple
|
||||||
```
|
```
|
||||||
|
|
||||||
|
|
||||||
|
|
|
@ -33,7 +33,7 @@ setup(
|
||||||
package_dir={'PPOCRLabel': ''},
|
package_dir={'PPOCRLabel': ''},
|
||||||
include_package_data=True,
|
include_package_data=True,
|
||||||
entry_points={"console_scripts": ["PPOCRLabel= PPOCRLabel.PPOCRLabel:main"]},
|
entry_points={"console_scripts": ["PPOCRLabel= PPOCRLabel.PPOCRLabel:main"]},
|
||||||
version='2.1.1',
|
version='2.1.2',
|
||||||
install_requires=requirements,
|
install_requires=requirements,
|
||||||
license='Apache License 2.0',
|
license='Apache License 2.0',
|
||||||
description='PPOCRLabel is a semi-automatic graphic annotation tool suitable for OCR field, with built-in PPOCR model to automatically detect and re-recognize data. It is written in python3 and pyqt5, supporting rectangular box annotation and four-point annotation modes. Annotations can be directly used for the training of PPOCR detection and recognition models',
|
description='PPOCRLabel is a semi-automatic graphic annotation tool suitable for OCR field, with built-in PPOCR model to automatically detect and re-recognize data. It is written in python3 and pyqt5, supporting rectangular box annotation and four-point annotation modes. Annotations can be directly used for the training of PPOCR detection and recognition models',
|
||||||
|
|
Loading…
Reference in New Issue