Skip to content

Commit cc216f2

Browse files
authored
update for 3.0.2 (#4216)
1 parent 7aa3647 commit cc216f2

File tree

6 files changed

+10
-10
lines changed

6 files changed

+10
-10
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -567,7 +567,7 @@ python -m pip install paddlepaddle==3.0.0 -i https://www.paddlepaddle.org.cn/pac
567567
* **安装PaddleX**
568568

569569
```bash
570-
pip install "paddlex[base]==3.0.1"
570+
pip install "paddlex[base]"
571571
```
572572

573573
> ❗ 更多安装方式参考 [PaddleX 安装教程](https://paddlepaddle.github.io/PaddleX/latest/installation/installation.html)

README_en.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -572,7 +572,7 @@ python -m pip install paddlepaddle==3.0.0 -i https://www.paddlepaddle.org.cn/pac
572572
* **Installing PaddleX**
573573

574574
```bash
575-
pip install "paddlex[base]==3.0.1"
575+
pip install "paddlex[base]"
576576
```
577577

578578
> ❗For more installation methods, refer to the [PaddleX Installation Guide](https://paddlepaddle.github.io/PaddleX/latest/en/installation/installation.html).

docs/index.en.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,7 @@ PaddleX 3.0 is a low-code development tool for AI models built on the PaddlePadd
8787
### Installing PaddleX
8888

8989
```bash
90-
pip install paddlex[base]==3.0.1
90+
pip install "paddlex[base]"
9191
```
9292

9393
> ❗ For more installation methods, please refer to the [PaddleX Installation Guide](https://paddlepaddle.github.io/PaddleX/latest/installation/installation.html)

docs/index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,7 @@ PaddleX 3.0 是基于飞桨框架构建的低代码开发工具,它集成了
8888
### 安装PaddleX
8989

9090
```bash
91-
pip install paddlex[base]==3.0.1
91+
pip install "paddlex[base]"
9292
```
9393

9494
> ❗ 更多安装方式参考 [PaddleX 安装教程](https://paddlepaddle.github.io/PaddleX/latest/installation/installation.html)

docs/installation/installation.en.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -18,21 +18,21 @@ After installing PaddlePaddle (refer to the [PaddlePaddle Local Installation Tut
1818
1919
```bash
2020
# Only install the required dependencies (optional dependencies can be installed later as needed)
21-
pip install paddlex==3.0.1
21+
pip install paddlex
2222
```
2323

2424
You can install the optional dependencies as needed using the following method (For more details, please refer to [2.3 Selective Installation of Dependencies](#23-selective-installation-of-dependencies)):
2525

2626
Install all dependencies required for PaddleX "basic features":
2727

2828
```bash
29-
pip install "paddlex[base]==3.0.1"
29+
pip install "paddlex[base]"
3030
```
3131

3232
Only install the dependencies required for a specific feature:
3333

3434
```bash
35-
pip install "paddlex[ocr]==3.0.1"
35+
pip install "paddlex[ocr]"
3636
```
3737

3838
### 1.2 Plugin Installation Mode

docs/installation/installation.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -20,20 +20,20 @@ PaddleX为您提供了两种安装模式:<b>Wheel包安装</b>和<b>插件安
2020
2121
```bash
2222
# 仅安装必须依赖(可以在之后按需安装可选依赖)
23-
pip install paddlex==3.0.0
23+
pip install paddlex
2424
```
2525

2626
通过如下方式可以安装所需的可选依赖(更多说明请参考 [2.3 选择性安装依赖](#23-选择性安装依赖)):
2727

2828
安装 PaddleX “基础功能”需要的全部依赖:
2929

3030
```bash
31-
pip install "paddlex[base]==3.0.1"
31+
pip install "paddlex[base]"
3232
```
3333

3434
仅安装某项功能所需依赖:
3535
```bash
36-
pip install "paddlex[ocr]==3.0.1"
36+
pip install "paddlex[ocr]"
3737
```
3838

3939
### 1.2 插件安装模式

0 commit comments

Comments
 (0)