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
Copy file name to clipboardexpand all lines: docs/install.md
+35-29
Original file line number
Diff line number
Diff line change
@@ -13,62 +13,68 @@ English | [简体中文](install_cn.md)
13
13
14
14
### 1. Install PaddlePaddle
15
15
16
+
Please refer to the [installation doc](https://www.paddlepaddle.org.cn/documentation/docs/en/install/index_en.html) to install PaddlePaddle (the version >= 2.2).
17
+
16
18
Highly recommend you install the GPU version of PaddlePaddle, due to the large overhead of segmentation models, otherwise, it could be out of memory while running the models.
- For quick installation of more CUDA versions or environments, please refer to [PaddlePaddle Quick Installation Document](https://www.paddlepaddle.org.cn/install/quick)
26
-
- For more installation methods such as conda or source code compilation and installation methods, please refer to [PaddlePaddle Installation Document](https://www.paddlepaddle.org.cn/documentation/docs/zh/install/index_en.html)
Please make sure that your PaddlePaddle is installed successfully and the version is not lower than the required version. Use the following command to verify.
27
+
In Python interpreter, run the following command to confirm whether PaddlePaddle is installed successfully
29
28
30
29
```
31
-
# Confirm that PaddlePaddle is installed successfully in your Python interpreter
#If a version error occurs during installation, you can try to delete the old version and re-run the script.
63
54
```
55
+
56
+
If a version error occurs during installation, you can try to delete the old version and re-run the script.
64
57
## 5. Verify Installation
65
58
66
-
Run the following command to verify PaddleSeg installation. The predicted results will be in output/result if successful.
59
+
In the root of PaddleSeg, run the following command. If there are no error in terminal log, you can use PaddleSeg to train, validate, test and export models with config method.
60
+
61
+
```
62
+
cd PaddleSeg
63
+
sh tests/run_check_install.sh
64
+
```
65
+
66
+
## 3. Install PaddleSeg (Optional)
67
+
68
+
Besides, PaddleSeg also supports api method for flexible development, which requires the PaddleSeg is installed in python libs.
0 commit comments