I have been trying to install cuda 8.0 in ubuntu 20.04.
I used the documentation provided in: https://developer.nvidia.com/cuda-80-ga2-download-archive
I tried with both the deb(local) and deb(network).
However, using sudo apt-get cuda
, I get the following error:
The following packages have unmet dependencies:
cuda : Depends: cuda-11-0 (>= 11.0.1) but it is not going to be installed
E: Unable to correct problems, you have held broken packages.
From a few other questions I got to know, I could use sudo apt-get cuda-8-0
.
However that too shows following error:
Reading package lists... Done
Building dependency tree
Reading state information... Done
Some packages could not be installed. This may mean that you have
requested an impossible situation or if you are using the unstable
distribution that some required packages have not yet been created
or been moved out of Incoming.
The following information may help to resolve the situation:
The following packages have unmet dependencies:
cuda-8-0 : Depends: cuda-runtime-8-0 (>= 8.0.61) but it is not going to be installed
Depends: cuda-demo-suite-8-0 (>= 8.0.61) but it is not going to be installed
E: Unable to correct problems, you have held broken packages.
Can anyone help what I am doing wrong and how I can install Cuda-8-0 in ubuntu 20.04?
sudo apt install nvidia-cuda-toolkit
which will install Cuda 10.1 – singrium Jun 26 '20 at 10:19