install_CentOS.md 6.1 KB
Newer Older
1 2
# **CentOS下安装**

3
## 环境准备
4

5
* **CentOS 版本 (64 bit)**
6 7
    * **CentOS 6 (GPU版本支持CUDA 9.0/9.1/9.2/10.0/10.1, 仅支持单卡)**
    * **CentOS 7 (GPU版本支持CUDA 9.0/9.1/9.2/10.0/10.1, 其中CUDA 9.1仅支持单卡)**
8 9
* **Python 版本 2.7.15+/3.5.1+/3.6/3.7 (64 bit)**
* **pip 或 pip3 版本 9.0.1+ (64 bit)**
10

11
### 注意事项
S
shanyi15 已提交
12

13
* 可以使用`uname -m && cat /etc/*release`查看本机的操作系统和位数信息
14 15 16 17 18 19 20 21
* 确认需要安装 PaddlePaddle 的 Python 是您预期的位置,因为您计算机可能有多个 Python

    * 如果您是使用 Python 2,使用以下命令输出 Python 路径,根据的环境您可能需要将说明中所有命令行中的 python 替换为具体的 Python 路径

        which python

    * 如果您是使用 Python 3,使用以下命令输出 Python 路径,根据您的环境您可能需要将说明中所有命令行中的 python3 替换为 python 或者替换为具体的 Python 路径

22
        which python3
23 24 25 26 27 28 29 30 31 32 33 34 35

* 需要确认python的版本是否满足要求

    * 如果您是使用 Python 2,使用以下命令确认是 2.7.15+

        python --version

    * 如果您是使用 Python 3,使用以下命令确认是 3.5.1+/3.6/3.7

        python3 --version

* 需要确认pip的版本是否满足要求,要求pip版本为9.0.1+

36
    * 如果您是使用 Python 2
37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54

        python -m ensurepip

        python -m pip --version

    * 如果您是使用 Python 3

        python3 -m ensurepip

        python3 -m pip --version

* 需要确认Python和pip是64bit,并且处理器架构是x86_64(或称作x64、Intel 64、AMD64)架构,目前PaddlePaddle不支持arm64架构。下面的第一行输出的是"64bit",第二行输出的是"x86_64"、"x64"或"AMD64"即可:

    * 如果您是使用 Python 2

        python -c "import platform;print(platform.architecture()[0]);print(platform.machine())"

    * 如果您是使用 Python 3
55

56 57 58
        python3 -c "import platform;print(platform.architecture()[0]);print(platform.machine())"

* 默认提供的安装包需要计算机支持MKL
J
Jiabin Yang 已提交
59
* 如果您对机器环境不了解,请下载使用[快速安装脚本](https://fast-install.bj.bcebos.com/fast_install.sh),配套说明请参考[这里](https://github.com/PaddlePaddle/FluidDoc/tree/develop/doc/fluid/beginners_guide/install/install_script.md)
S
shanyi15 已提交
60

61
## 选择CPU/GPU
62

63
* 如果您的计算机没有 NVIDIA® GPU,请安装CPU版本的PaddlePaddle
64

J
Jiabin Yang 已提交
65
* 如果您的计算机有NVIDIA® GPU,请确保满足以下条件并且安装GPU版PaddlePaddle
66

67 68 69
	* **CUDA 工具包10.0配合cuDNN v7.3+(如需多卡支持,需配合NCCL2.3.7及更高)**
	* **CUDA 工具包9.0配合cuDNN v7.3+(如需多卡支持,需配合NCCL2.3.7及更高)**
	* **GPU运算能力超过1.0的硬件设备**
J
Jiabin Yang 已提交
70 71 72

		您可参考NVIDIA官方文档了解CUDA和CUDNN的安装流程和配置方法,请见[CUDA](https://docs.nvidia.com/cuda/cuda-installation-guide-linux/),[cuDNN](https://docs.nvidia.com/deeplearning/sdk/cudnn-install/)

73
* 如果您需要使用多卡环境请确保您已经正确安装nccl2,或者按照以下指令安装nccl2(这里提供的是CentOS 7,CUDA9,cuDNN7下nccl2的安装指令),更多版本的安装信息请参考NVIDIA[官方网站](https://developer.nvidia.com/nccl):
J
Jiabin Yang 已提交
74 75 76 77 78 79


		wget http://developer.download.nvidia.com/compute/machine-learning/repos/rhel7/x86_64/nvidia-machine-learning-repo-rhel7-1.0.0-1.x86_64.rpm
		rpm -i nvidia-machine-learning-repo-rhel7-1.0.0-1.x86_64.rpm
		yum update -y
		yum install -y libnccl-2.3.7-2+cuda9.0 libnccl-devel-2.3.7-2+cuda9.0 libnccl-static-2.3.7-2+cuda9.0
S
shanyi15 已提交
80

81

82
## 安装方式
S
shanyi15 已提交
83

84
CentOS系统下有5种安装方式:
85

86
* pip安装(推荐)
87
* [conda安装](./install_Conda.html)
88
* [Docker安装](./install_Docker.html)
89 90
* [源码编译安装](./compile/compile_CentOS.html#ct_source)
* [Docker源码编译安装](./compile/compile_CentOS.html#ct_docker)
S
shanyi15 已提交
91

92
这里为您介绍pip安装方式
S
shanyi15 已提交
93

94
## 安装步骤
S
shanyi15 已提交
95

96
* CPU版PaddlePaddle:
97
  * 对于Python 2: `python -m pip install paddlepaddle -i https://mirror.baidu.com/pypi/simple``python -m pip install paddlepaddle -i https://pypi.tuna.tsinghua.edu.cn/simple`
98 99
  * 对于Python 3: `python3 -m pip install paddlepaddle -i https://mirror.baidu.com/pypi/simple``python3 -m pip install paddlepaddle -i https://pypi.tuna.tsinghua.edu.cn/simple`
* GPU版PaddlePaddle:
100
  * 对于Python 2: `python -m pip install paddlepaddle-gpu -i https://mirror.baidu.com/pypi/simple``python -m pip install paddlepaddle-gpu -i https://pypi.tuna.tsinghua.edu.cn/simple`
101
  * 对于Python 3: `python3 -m pip install paddlepaddle-gpu -i https://mirror.baidu.com/pypi/simple``python3 -m pip install paddlepaddle-gpu -i https://pypi.tuna.tsinghua.edu.cn/simple`
S
shanyi15 已提交
102

103
您可[验证是否安装成功](#check),如有问题请查看[FAQ](./FAQ.html)
S
shanyi15 已提交
104

105
注:
S
shanyi15 已提交
106

107
* 如果是python2.7, 建议使用`python`命令; 如果是python3.x, 则建议使用`python3`命令
108 109


110
* `python -m pip install paddlepaddle-gpu -i https://pypi.tuna.tsinghua.edu.cn/simple` 此命令将安装支持CUDA 10.0 cuDNN v7的PaddlePaddle,如您对CUDA或cuDNN版本有不同要求,可用`python -m pip install paddlepaddle-gpu==[版本号] -i https://pypi.tuna.tsinghua.edu.cn/simple``python3 -m pip install paddlepaddle-gpu==[版本号] -i https://pypi.tuna.tsinghua.edu.cn/simple`命令来安装,版本号请见[这里](https://pypi.org/project/paddlepaddle-gpu#history), 关于paddlepaddle与CUDA, cuDNN版本的对应关系请见[安装包列表](./Tables.html#whls)
111 112


113
* 默认下载最新稳定版的安装包,如需获取开发版安装包,请参考[这里](./Tables.html#ciwhls)
S
shanyi15 已提交
114

115
<a name="check"></a>
116
## **验证安装**
C
Cheerego 已提交
117 118
安装完成后您可以使用 `python``python3` 进入python解释器,输入`import paddle.fluid as fluid` ,再输入
 `fluid.install_check.run_check()`
C
Cheerego 已提交
119 120

如果出现`Your Paddle Fluid is installed succesfully!`,说明您已成功安装。
121

122
## **如何卸载**
123
请使用以下命令卸载PaddlePaddle:
124

125
* **CPU版本的PaddlePaddle**: `python -m pip uninstall paddlepaddle``python3 -m pip uninstall paddlepaddle`
126

127
* **GPU版本的PaddlePaddle**: `python -m pip uninstall paddlepaddle-gpu``python3 -m pip uninstall paddlepaddle-gpu`