You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
> ❗For more installation methods, refer to the [PaddleX Installation Guide](https://paddlepaddle.github.io/PaddleX/latest/en/installation/installation.html).
Copy file name to clipboardExpand all lines: docs/index.en.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -87,7 +87,7 @@ PaddleX 3.0 is a low-code development tool for AI models built on the PaddlePadd
87
87
### Installing PaddleX
88
88
89
89
```bash
90
-
pip install paddlex[base]==3.0.1
90
+
pip install "paddlex[base]"
91
91
```
92
92
93
93
> ❗ For more installation methods, please refer to the [PaddleX Installation Guide](https://paddlepaddle.github.io/PaddleX/latest/installation/installation.html)
Copy file name to clipboardExpand all lines: docs/installation/installation.en.md
+3-3Lines changed: 3 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -18,21 +18,21 @@ After installing PaddlePaddle (refer to the [PaddlePaddle Local Installation Tut
18
18
19
19
```bash
20
20
# Only install the required dependencies (optional dependencies can be installed later as needed)
21
-
pip install paddlex==3.0.1
21
+
pip install paddlex
22
22
```
23
23
24
24
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)):
25
25
26
26
Install all dependencies required for PaddleX "basic features":
27
27
28
28
```bash
29
-
pip install "paddlex[base]==3.0.1"
29
+
pip install "paddlex[base]"
30
30
```
31
31
32
32
Only install the dependencies required for a specific feature:
0 commit comments