Skip to content

Commit e38a4f6

Browse files
update (#7332)
1 parent 4ddd3c1 commit e38a4f6

18 files changed

+185
-136
lines changed

docs/install/conda/linux-conda.md

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99

1010
#### 1.1.1 安装环境
1111

12-
首先根据具体的 Python 版本创建 Anaconda 虚拟环境,PaddlePaddle 的 Anaconda 安装支持 3.8 - 3.13 版本的 Python 安装环境。
12+
首先根据具体的 Python 版本创建 Anaconda 虚拟环境,PaddlePaddle 的 Anaconda 安装支持 3.9 - 3.13 版本的 Python 安装环境。
1313

1414
```
1515
conda create -n paddle_env python=YOUR_PY_VER
@@ -109,6 +109,12 @@ conda install paddlepaddle==3.0.0 -c paddle
109109
conda install paddlepaddle-gpu==3.0.0 paddlepaddle-cuda=12.6 -c paddle -c nvidia
110110
```
111111

112+
* 对于 `CUDA 12.9` 安装命令为:
113+
114+
```
115+
conda install paddlepaddle-gpu==3.0.0 paddlepaddle-cuda=12.9 -c paddle -c nvidia
116+
```
117+
112118

113119
## **三、验证安装**
114120

docs/install/conda/linux-conda_en.md

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99

1010
#### 1.1.1 Create the Anaconda Virtual Environment
1111

12-
Create virtual environment First create the Anaconda virtual environment according to the specific Python version. The Anaconda installation of PaddlePaddle supports Python version of 3.8 - 3.13.
12+
Create virtual environment First create the Anaconda virtual environment according to the specific Python version. The Anaconda installation of PaddlePaddle supports Python version of 3.9 - 3.13.
1313

1414
```
1515
conda create -n paddle_env python=YOUR_PY_VER
@@ -114,6 +114,12 @@ conda install paddlepaddle==3.0.0 -c paddle
114114
conda install paddlepaddle-gpu==3.0.0 paddlepaddle-cuda=12.6 -c paddle -c nvidia
115115
```
116116

117+
* If you are using CUDA 12.9:
118+
119+
```
120+
conda install paddlepaddle-gpu==3.0.0 paddlepaddle-cuda=12.9 -c paddle -c nvidia
121+
```
122+
117123

118124
## Verify installation
119125

docs/install/conda/macos-conda.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88

99
#### 1.1.1 安装环境
1010

11-
首先根据具体的 Python 版本创建 Anaconda 虚拟环境,PaddlePaddle 的 Anaconda 安装支持 3.8 - 3.13 版本的 Python 安装环境。
11+
首先根据具体的 Python 版本创建 Anaconda 虚拟环境,PaddlePaddle 的 Anaconda 安装支持 3.9 - 3.13 版本的 Python 安装环境。
1212

1313
```
1414
conda create -n paddle_env python=YOUR_PY_VER
@@ -52,7 +52,7 @@ python3 --version
5252

5353
#### 1.2.3 检查系统环境
5454

55-
确认 Python 和 pip 是 64bit,并且处理器架构是 x86_64(或称作 x64、Intel 64、AMD64)架构 或 arm64 架构(paddle 已原生支持 Mac M1 芯片):
55+
确认 Python 和 pip 是 64bit,并且处理器架构是 arm64 架构(paddle 已原生支持 Mac M 芯片), 不再支持 x86_64 架构
5656

5757

5858
```

docs/install/conda/macos-conda_en.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010

1111
#### 1.1.1 Create the Anaconda Virtual Environment
1212

13-
Create virtual environment First create the Anaconda virtual environment according to the specific Python version. The Anaconda installation of PaddlePaddle supports Python version of 3.8 - 3.13.
13+
Create virtual environment First create the Anaconda virtual environment according to the specific Python version. The Anaconda installation of PaddlePaddle supports Python version of 3.9 - 3.13.
1414

1515
```
1616
conda create -n paddle_env python=YOUR_PY_VER
@@ -54,7 +54,7 @@ python3 --version
5454
#### 1.2.3 Check the system environment
5555

5656

57-
Confirm that Python and pip are 64bit, and the processor architecture is x86_64(or called x64、Intel 64、AMD64) or arm64 (PaddlePaddle already supports Mac M1):
57+
Confirm that Python and pip are 64bit, and the processor architecture is arm64 (PaddlePaddle already supports Mac M), no longer supporting x86_64 architecture
5858

5959

6060
```

docs/install/conda/windows-conda.md

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99

1010
#### 1.1.1 安装环境
1111

12-
首先根据具体的 Python 版本创建 Anaconda 虚拟环境,PaddlePaddle 的 Anaconda 安装支持 3.8 - 3.13 版本的 Python 安装环境。
12+
首先根据具体的 Python 版本创建 Anaconda 虚拟环境,PaddlePaddle 的 Anaconda 安装支持 3.9 - 3.13 版本的 Python 安装环境。
1313

1414
```
1515
conda create -n paddle_env python=YOUR_PY_VER
@@ -111,6 +111,12 @@ conda install paddlepaddle==3.0.0 -c paddle
111111
conda install paddlepaddle-gpu==3.0.0 paddlepaddle-cuda=12.6 -c paddle -c nvidia
112112
```
113113

114+
* 对于 `CUDA 12.9` 安装命令为:
115+
116+
```
117+
conda install paddlepaddle-gpu==3.0.0 paddlepaddle-cuda=12.9 -c paddle -c nvidia
118+
```
119+
114120

115121
## **三、验证安装**
116122

docs/install/conda/windows-conda_en.md

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010

1111
#### 1.1.1 Create the Anaconda Virtual Environment
1212

13-
Create virtual environment First create the Anaconda virtual environment according to the specific Python version. The Anaconda installation of PaddlePaddle supports Python version of 3.8 - 3.13.
13+
Create virtual environment First create the Anaconda virtual environment according to the specific Python version. The Anaconda installation of PaddlePaddle supports Python version of 3.9 - 3.13.
1414

1515
```
1616
conda create -n paddle_env python=YOUR_PY_VER
@@ -118,6 +118,12 @@ conda install paddlepaddle==3.0.0 -c paddle
118118
conda install paddlepaddle-gpu==3.0.0 paddlepaddle-cuda=12.6 -c paddle -c nvidia
119119
```
120120

121+
* If you are using CUDA 12.9:
122+
123+
```
124+
conda install paddlepaddle-gpu==3.0.0 paddlepaddle-cuda=12.9 -c paddle -c nvidia
125+
```
126+
121127

122128
## Verify installation
123129

docs/install/docker/linux-docker.md

Lines changed: 32 additions & 22 deletions
Original file line numberDiff line numberDiff line change
@@ -21,40 +21,46 @@
2121

2222
* CPU 版的 PaddlePaddle:
2323
```
24-
docker pull ccr-2vdh3abv-pub.cnc.bj.baidubce.com/paddlepaddle/paddle:3.0.0
24+
docker pull ccr-2vdh3abv-pub.cnc.bj.baidubce.com/paddlepaddle/paddle:3.1.0
2525
```
2626
2727
* CPU 版的 PaddlePaddle,且镜像中预装好了 jupyter:
2828
```
29-
docker pull ccr-2vdh3abv-pub.cnc.bj.baidubce.com/paddlepaddle/paddle:3.0.0-jupyter
29+
docker pull ccr-2vdh3abv-pub.cnc.bj.baidubce.com/paddlepaddle/paddle:3.1.0-jupyter
3030
```
3131
3232
* GPU 版的 PaddlePaddle(**建议拉取最新版本镜像,并确保已经成功安装 NVIDIA Container Toolkit**):
3333
```
34-
docker pull ccr-2vdh3abv-pub.cnc.bj.baidubce.com/paddlepaddle/paddle:3.0.0-gpu-cuda11.8-cudnn8.9-trt8.6
34+
docker pull ccr-2vdh3abv-pub.cnc.bj.baidubce.com/paddlepaddle/paddle:3.1.0-gpu-cuda11.8-cudnn8.9-trt8.6
3535
```
3636
```
37-
docker pull ccr-2vdh3abv-pub.cnc.bj.baidubce.com/paddlepaddle/paddle:3.0.0-gpu-cuda12.6-cudnn9.5-trt10.5
37+
docker pull ccr-2vdh3abv-pub.cnc.bj.baidubce.com/paddlepaddle/paddle:3.1.0-gpu-cuda12.6-cudnn9.5-trt10.5
38+
```
39+
```
40+
docker pull ccr-2vdh3abv-pub.cnc.bj.baidubce.com/paddlepaddle/paddle:3.1.0-gpu-cuda12.9-cudnn9.9-trt10.5
3841
```
3942
4043
如果您的机器不在中国大陆地区,可以直接从 DockerHub 拉取镜像:
4144
4245
* CPU 版的 PaddlePaddle:
4346
```
44-
docker pull paddlepaddle/paddle:3.0.0
47+
docker pull paddlepaddle/paddle:3.1.0
4548
```
4649
4750
* CPU 版的 PaddlePaddle,且镜像中预装好了 jupyter:
4851
```
49-
docker pull paddlepaddle/paddle:3.0.0-jupyter
52+
docker pull paddlepaddle/paddle:3.1.0-jupyter
5053
```
5154
5255
* GPU 版的 PaddlePaddle(**建议拉取最新版本镜像,并确保已经成功安装 NVIDIA Container Toolkit**):
5356
```
54-
docker pull paddlepaddle/paddle:3.0.0-gpu-cuda11.8-cudnn8.9-trt8.6
57+
docker pull paddlepaddle/paddle:3.1.0-gpu-cuda11.8-cudnn8.9-trt8.6
58+
```
5559
```
60+
docker pull paddlepaddle/paddle:3.1.0-gpu-cuda12.6-cudnn9.5-trt10.5
5661
```
57-
docker pull paddlepaddle/paddle:3.0.0-gpu-cuda12.6-cudnn9.5-trt10.5
62+
```
63+
docker pull paddlepaddle/paddle:3.1.0-gpu-cuda12.9-cudnn9.9-trt10.5
5864
```
5965
6066
您还可以访问[DockerHub](https://hub.docker.com/r/paddlepaddle/paddle/tags/)获取更多镜像。
@@ -66,7 +72,7 @@
6672
6773
6874
```
69-
docker run --name paddle_docker -it -v $PWD:/paddle ccr-2vdh3abv-pub.cnc.bj.baidubce.com/paddlepaddle/paddle:3.0.0 /bin/bash
75+
docker run --name paddle_docker -it -v $PWD:/paddle ccr-2vdh3abv-pub.cnc.bj.baidubce.com/paddlepaddle/paddle:3.1.0 /bin/bash
7076
```
7177
7278
- `--name paddle_docker`:设定 Docker 的名称,`paddle_docker` 是自己设置的名称;
@@ -77,7 +83,7 @@
7783
7884
- `-v $PWD:/paddle`:指定将当前路径(PWD 变量会展开为当前路径的绝对路径)挂载到容器内部的 /paddle 目录;
7985
80-
- `ccr-2vdh3abv-pub.cnc.bj.baidubce.com/paddlepaddle/paddle:3.0.0`:指定需要使用的 image 名称,您可以通过`docker images`命令查看;/bin/bash 是在 Docker 中要执行的命令
86+
- `ccr-2vdh3abv-pub.cnc.bj.baidubce.com/paddlepaddle/paddle:3.1.0`:指定需要使用的 image 名称,您可以通过`docker images`命令查看;/bin/bash 是在 Docker 中要执行的命令
8187
8288
8389
* 使用 CPU 版本的 PaddlePaddle,且镜像中预装好了 jupyter:
@@ -92,7 +98,7 @@
9298
cd ./jupyter_docker
9399
```
94100
```
95-
docker run -p 80:80 --rm --env USER_PASSWD="password you set" -v $PWD:/home/paddle ccr-2vdh3abv-pub.cnc.bj.baidubce.com/paddlepaddle/paddle:3.0.0-jupyter
101+
docker run -p 80:80 --rm --env USER_PASSWD="password you set" -v $PWD:/home/paddle ccr-2vdh3abv-pub.cnc.bj.baidubce.com/paddlepaddle/paddle:3.1.0-jupyter
96102
```
97103
98104
- `--rm`:关闭容器后删除容器;
@@ -103,13 +109,13 @@
103109
104110
- `-v $PWD:/home/paddle`:指定将当前路径(PWD 变量会展开为当前路径的绝对路径)挂载到容器内部的 /home/paddle 目录;
105111
106-
- `ccr-2vdh3abv-pub.cnc.bj.baidubce.com/paddlepaddle/paddle:3.0.0-jupyter`:指定需要使用的 image 名称,您可以通过`docker images`命令查看
112+
- `ccr-2vdh3abv-pub.cnc.bj.baidubce.com/paddlepaddle/paddle:3.1.0-jupyter`:指定需要使用的 image 名称,您可以通过`docker images`命令查看
107113
108114
109115
* 使用 GPU 版本的 PaddlePaddle:
110116
111117
```
112-
docker run --gpus all --name paddle_docker -v $PWD:/paddle --network=host -it ccr-2vdh3abv-pub.cnc.bj.baidubce.com/paddlepaddle/paddle:3.0.0-gpu-cuda12.6-cudnn9.5-trt10.5 /bin/bash
118+
docker run --gpus all --name paddle_docker -v $PWD:/paddle --network=host -it ccr-2vdh3abv-pub.cnc.bj.baidubce.com/paddlepaddle/paddle:3.1.0-gpu-cuda12.6-cudnn9.5-trt10.5 /bin/bash
113119
```
114120
115121
- `--gpus all`: 在 Docker 容器中允许使用 gpu;
@@ -121,7 +127,7 @@
121127
122128
- `-it`: 与宿主机保持交互状态;
123129
124-
- `ccr-2vdh3abv-pub.cnc.bj.baidubce.com/paddlepaddle/paddle:3.0.0-gpu-cuda12.6-cudnn9.5-trt10.5`:使用名为`ccr-2vdh3abv-pub.cnc.bj.baidubce.com/paddlepaddle/paddle`, tag 为`3.0.0-gpu-cuda12.6-cudnn9.5-trt10.5`的镜像创建 Docker 容器,/bin/bash 进入容器后启动/bin/bash 命令。
130+
- `ccr-2vdh3abv-pub.cnc.bj.baidubce.com/paddlepaddle/paddle:3.1.0-gpu-cuda12.6-cudnn9.5-trt10.5`:使用名为`ccr-2vdh3abv-pub.cnc.bj.baidubce.com/paddlepaddle/paddle`, tag 为`3.1.0-gpu-cuda12.6-cudnn9.5-trt10.5`的镜像创建 Docker 容器,/bin/bash 进入容器后启动/bin/bash 命令。
125131
126132
127133
@@ -140,20 +146,24 @@
140146
</thead>
141147
<tbody>
142148
<tr>
143-
<td> ccr-2vdh3abv-pub.cnc.bj.baidubce.com/paddlepaddle/paddle:3.0.0 </td>
144-
<td> 安装了 3.0.0 版本 paddle 的 CPU 镜像 </td>
149+
<td> ccr-2vdh3abv-pub.cnc.bj.baidubce.com/paddlepaddle/paddle:3.1.0 </td>
150+
<td> 安装了 3.1.0 版本 paddle 的 CPU 镜像 </td>
151+
</tr>
152+
<tr>
153+
<td> ccr-2vdh3abv-pub.cnc.bj.baidubce.com/paddlepaddle/paddle:3.1.0-jupyter </td>
154+
<td> 安装了 3.1.0 版本 paddle 的 CPU 镜像,且镜像中预装好了 jupyter,启动 docker 即运行 jupyter 服务 </td>
145155
</tr>
146156
<tr>
147-
<td> ccr-2vdh3abv-pub.cnc.bj.baidubce.com/paddlepaddle/paddle:3.0.0-jupyter </td>
148-
<td> 安装了 3.0.0 版本 paddle 的 CPU 镜像,且镜像中预装好了 jupyter,启动 docker 即运行 jupyter 服务 </td>
157+
<td> ccr-2vdh3abv-pub.cnc.bj.baidubce.com/paddlepaddle/paddle:3.1.0-gpu-cuda11.8-cudnn8.9-trt8.6 </td>
158+
<td> 安装了 3.1.0 版本 paddle 的 GPU 镜像,cuda 版本为 11.8,cudnn 版本为 8.9,trt 版本为 8.6 </td>
149159
</tr>
150160
<tr>
151-
<td> ccr-2vdh3abv-pub.cnc.bj.baidubce.com/paddlepaddle/paddle:3.0.0-gpu-cuda11.8-cudnn8.9-trt8.6 </td>
152-
<td> 安装了 3.0.0 版本 paddle 的 GPU 镜像,cuda 版本为 11.8,cudnn 版本为 8.9,trt 版本为 8.6 </td>
161+
<td> ccr-2vdh3abv-pub.cnc.bj.baidubce.com/paddlepaddle/paddle:3.1.0-gpu-cuda12.6-cudnn9.5-trt10.5 </td>
162+
<td> 安装了 3.1.0 版本 paddle 的 GPU 镜像,cuda 版本为 12.6,cudnn 版本为 9.5,trt 版本为 10.5 </td>
153163
</tr>
154164
<tr>
155-
<td> ccr-2vdh3abv-pub.cnc.bj.baidubce.com/paddlepaddle/paddle:3.0.0-gpu-cuda12.6-cudnn9.5-trt10.5 </td>
156-
<td> 安装了 3.0.0 版本 paddle 的 GPU 镜像,cuda 版本为 12.6,cudnn 版本为 9.5,trt 版本为 10.5 </td>
165+
<td> ccr-2vdh3abv-pub.cnc.bj.baidubce.com/paddlepaddle/paddle:3.1.0-gpu-cuda12.9-cudnn9.9-trt10.5 </td>
166+
<td> 安装了 3.1.0 版本 paddle 的 GPU 镜像,cuda 版本为 12.9,cudnn 版本为 9.9,trt 版本为 10.5 </td>
157167
</tr>
158168
</tbody>
159169
</table>

0 commit comments

Comments
 (0)