Ubuntu安装CUDA、CUDNN比较有用的网址总结

Ubuntu安装CUDA、CUDNN比较有用的网址总结

1、tensorflow各个版本所对应的的系统要求和CUDACUDNN适配版本

https://tensorflow.google.cn/install/source_windows

2、手动安装CUDA/CUDNN

https://blog.csdn.net/wanzhen4330/article/details/81699769

注意:该博文中设置CUDA环境变量的代码写错了,应该改为:

export LD_LIBRARY_PATH=/usr/local/cuda-9.0/lib64:$LD_LIBRARY_PATH
export PATH=/usr/local/cuda-9.0/bin:$PATH
export CUDA_HOME=/usr/local/cuda-9.0:$CUDA_HOME

3、ubuntu更改系统内核

https://www.cnblogs.com/sch01ar/p/10215382.html

4、安装cuda8.0出现:“Missing recommended library”和“installUtils.pm”

https://blog.csdn.net/qjk19940101/article/details/78927109

https://blog.csdn.net/qq_41481731/article/details/86658209

原文地址:https://www.cnblogs.com/AlgrithmsRookie/p/11984586.html