若您想要使用 nvcc,可是所选的镜像中没有预装 nvcc,可按照以下操做自行安装。ubuntu
一、检查系统版本bash
source /etc/os-release && echo $VERSION_ID
二、导入apt仓库和其GPG keycurl
# 第一步若输出 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
三、安装所需版本的 nvccurl
apt update # "10-0" 表示安装CUDA10.0版本的 nvcc, 应根据镜像中cuda版本安装 apt install cuda-command-line-tools-10-0
cuda10的镜像ubuntu1804code
apt update apt install cuda-command-line-tools-10-0
cuda10.1的镜像ubuntu1804get
apt update apt install cuda-command-line-tools-10-1
cuda10.2的镜像ubuntu1804io
apt update apt install cuda-command-line-tools-10-2
cuda9的镜像ubuntu1604class
apt update apt install cuda-command-line-tools-9-0
cuda8的镜像ubuntu1604date
apt update apt install cuda-command-line-tools-8-0
四、验证nvcc安装command
nvcc --version
参考连接