Linux centos7.6安装配置 NVIDIA CUDA
前期准备
Linux 安装NVIDIA驱动安装
https://blog.csdn.net/qq_40025218/article/details/109851985
安装CUDA
wget https://developer.download.nvidia.com/compute/cuda/11.1.0/local_installers/cuda_11.1.0_455.23.05_linux.run
sh cuda_11.1.0_455.23.05_linux.run
不勾选安装Driver,如图所示
在option-driver option里面勾选上面两个选项
安装完成,配置环境变量
vim /etc/profile
export PATH=/usr/local/cuda/bin:$PATH
export LD_LIBRARY_PATH=/usr/local/cuda/lib64:$LD_LIBRARY_PATH
source /etc/profile
注意环境变量路径,如图所示的路径。
查看版本
nvcc --version
完成。
参考链接:
https://docs.nvidia.com/cuda/cuda-installation-guide-linux/index.html
https://developer.nvidia.com/zh-cn/cuda-downloads?target_os=Linux&target_arch=x86_64&target_distro=CentOS&target_version=7&target_type=runfilelocal