From af815433a1a068e2eab468ae3d85dee0c29b3a8b Mon Sep 17 00:00:00 2001 From: HydrogenSulfate <490868991@qq.com> Date: Thu, 26 Dec 2024 13:58:41 +0800 Subject: [PATCH] correct paddle install scripts --- doc/env.md | 2 +- doc/install/easy-install.md | 9 +++++---- 2 files changed, 6 insertions(+), 5 deletions(-) diff --git a/doc/env.md b/doc/env.md index 5ff4cc695c..c11da35357 100644 --- a/doc/env.md +++ b/doc/env.md @@ -67,7 +67,7 @@ Control high (double) or low (float) precision of training. **Choices**: `0`, `1`; **Default**: `0` -{{ paddle_icon }} Enable Paddle CINN Compiler when `PD_JIT` is enabled. Note that this option may either improve or decrease the performance. Requires Paddle to support CINN()(`paddle.device.is_compiled_with_cinn()` is `True`). +{{ paddle_icon }} Enable Paddle CINN Compiler when `PD_JIT` is enabled. Note that this option may either improve or decrease the performance. Requires Paddle to support CINN(`paddle.device.is_compiled_with_cinn()` is `True`). ::: diff --git a/doc/install/easy-install.md b/doc/install/easy-install.md index 0bf8f98967..ff6b7015b4 100644 --- a/doc/install/easy-install.md +++ b/doc/install/easy-install.md @@ -193,7 +193,8 @@ Switch to the TensorFlow {{ tensorflow_icon }} tab for more information. ::::{tab-item} CUDA 12.3 ```bash -pip install deepmd-kit[paddle] +pip install paddlepaddle-gpu==3.0.0b2 -i https://www.paddlepaddle.org.cn/packages/stable/cu123/ +pip install deepmd-kit ``` :::: @@ -201,8 +202,8 @@ pip install deepmd-kit[paddle] ::::{tab-item} CUDA 11.8 ```bash -pip install paddlepaddle-gpu==3.0.0b2 -i https://www.paddlepaddle.org.cn/packages/stable/cu123/ -pip install deepmd-kit-cu11 +pip install paddlepaddle-gpu==3.0.0b2 -i https://www.paddlepaddle.org.cn/packages/stable/cu118/ +pip install deepmd-kit ``` :::: @@ -210,7 +211,7 @@ pip install deepmd-kit-cu11 ::::{tab-item} CPU ```bash -pip install paddlepaddle-gpu==3.0.0b2 -i https://www.paddlepaddle.org.cn/packages/stable/cu118/ +pip install paddlepaddle==3.0.0b2 -i https://www.paddlepaddle.org.cn/packages/stable/cpu/ pip install deepmd-kit ```