背景
我想在 Ubuntu 20.04 机器(实际上是 Travis CI 机器)上使用 CUDA 11.3 构建(而不是运行)一个程序。为此,我想安装 cuda-runtime-11-3 软件包(当您添加 NVIDIA apt 存储库时该软件包可用)。
现在,这对我来说适用于 CUDA 11.4:
CUDA_APT="11.4"
sudo apt install -y cuda-runtime-${CUDA_APT} cuda-toolkit-${CUDA_APT} cuda-compiler-${CUDA_APT};
但对于 11.3,我得到:
The following packages have unmet dependencies:
cuda-runtime-11-3 : Depends: cuda-drivers (>= 465.19.01) but it is not going to be installed
E: Unable to correct problems, you have held broken packages.
实际问题
尽管未安装依赖项,我是否可以强制安装该软件包?
或者,如果这个难题有另一种解决方案,那也是一个很好的答案。