paddle gpu install

时间:2024-04-18 17:01:00

官方教程

https://www.paddlepaddle.org.cn/documentation/docs/zh/install/pip/linux-pip.html#sanyanzhenganzhuang

创建一个新的环境安装

python3 -m pip install paddlepaddle-gpu==2.6.1.post112 -f https://www.paddlepaddle.org.cn/whl/linux/cudnnin/stable.html

python
import paddle
会报错缺少cuda文件
缺少文件
执行

conda install cudatoolkit=11.0 

然后查找文件

find anaconda目录 -name libcudart.so.11.0

在这里插入图片描述
然后加入路径到环境中
参考
https://blog.****.net/weixin_45742602/article/details/129386113