Paddlepaddle cpu版本安装过程
1.系统要求
2.Python和pip要求
3.使用pip安装
在 Windows 环境下,输出 Python 路径的命令为:
where python
在 MacOS/Linux 环境下,输出 Python 路径的命令为:
which python
使用以下命令确认是 3.6/3.7/3.8/3.9
python --version
检查 pip 的版本,确认是 20.2.2+
python -m ensurepippython -m pip --version
确认 Python 和 pip 是 64 bit,并且处理器架构是x86_64(或称作 x64、Intel 64、AMD64)架构,目前PaddlePaddle不支持arm64架构(mac M1除外,paddle 已支持Mac M1 芯片)。下面的第一行输出的是 "64bit" ,第二行输出的是 "x86_64" 、 "x64" 或 "AMD64" 即可:
python -c "import platform;print(platform.architecture()[0]);print(platform.machine())"
CPU版本 :如果您只是想安装CPU版本请参考如下命令安装安装CPU版本的命令为:python -m pip install paddlepaddle==2.2.2 -i https://mirror.baidu.com/pypi/simple或python -m pip install paddlepaddle==2.2.2 -i https://pypi.tuna.tsinghua.edu.cn/
使用 python 进入python解释器,输入import paddle ,再输入 paddle.utils.run_check()。如果出现 PaddlePaddle is installed successfully!,说明您已成功安装。