矩池云上如何安装nvcc
zmhg799417
post on 2022-11-6 18:27:22
51
0
0
1、检查系统版本
source /etc/os-release && echo $VERSION_ID
2、导入apt仓库和其GPG key
# 第一步若输出 16.04
curl -fsSL https://mirrors.aliyun.com/nvidia-cuda/ubuntu1604/x86_64/7fa2af80.pub | apt-key add -
echo "deb https://mirrors.aliyun.com/nvidia-cuda/ubuntu1604/x86_64/ /" > /etc/apt/sources.list.d/cuda.list
# 第一步若输出 18.04
curl -fsSL https://mirrors.aliyun.com/nvidia-cuda/ubuntu1804/x86_64/7fa2af80.pub | apt-key add -
echo "deb https://mirrors.aliyun.com/nvidia-cuda/ubuntu1804/x86_64/ /" > /etc/apt/sources.list.d/cuda.list
3、安装所需版本的 nvcc
apt update
# "10-0" 表示安装CUDA10.0版本的 nvcc, 应根据镜像中cuda版本安装
apt install cuda-command-line-tools-10-0
cuda10的镜像ubuntu1804
apt update
apt install cuda-command-line-tools-10-0
cuda10.1的镜像ubuntu1804
apt update
apt install cuda-command-line-tools-10-1
cuda10.2的镜像ubuntu1804
apt update
apt install cuda-command-line-tools-10-2
cuda9的镜像ubuntu1604
apt update
apt install cuda-command-line-tools-9-0
cuda8的镜像ubuntu1604
apt update
apt install cuda-command-line-tools-8-0
4、验证nvcc安装
nvcc --version
参考链接
https://mirrors.aliyun.com/nvidia-cuda/ubuntu1804/x86_64/
https://mirrors.aliyun.com/nvidia-cuda/ubuntu1604/x86_64/
BitMere.com is Information release platform,just provides information storage space services.
The opinions expressed are solely those of the author,Does not constitute advice, please treat with caution.
The opinions expressed are solely those of the author,Does not constitute advice, please treat with caution.
Write the first review