update pip to pip3

This commit is contained in:
WenmuZhou 2020-09-21 12:48:31 +08:00
parent 5fa8b5c666
commit 47f9972a20
2 changed files with 2 additions and 2 deletions

View File

@ -12,7 +12,7 @@ pip install paddleocr
本地构建并安装
```bash
python3 setup.py bdist_wheel
pip install dist/paddleocr-x.x.x-py3-none-any.whl # x.x.x是paddleocr的版本号
pip3 install dist/paddleocr-x.x.x-py3-none-any.whl # x.x.x是paddleocr的版本号
```
### 1. 代码使用

View File

@ -10,7 +10,7 @@ pip install paddleocr
build own whl package and install
```bash
python3 setup.py bdist_wheel
pip install dist/paddleocr-x.x.x-py3-none-any.whl # x.x.x is the version of paddleocr
pip3 install dist/paddleocr-x.x.x-py3-none-any.whl # x.x.x is the version of paddleocr
```
### 1. Use by code