Hello,
I am not able to install the last realease of CUDA 11.1 using the method deb network and the libnvidia-gl-455:i386 (required to open steam) using PPA in Ubuntu 18.04 LTS.
I tried two methods and both result in an error.
Method 1:
- Install the nvidia-driver-455 (ubuntu PPA).
- Install the libnvidia-gl-455:i386 (ubuntu PPA).
- Install the CUDA 11.1 (using βdeb (network)β method).
Result:
$ sudo apt install cuda
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 : Depends: cuda-11-1 (>= 11.1.0) but it is not going to be installed
E: Unable to correct problems, you have held broken packages.
Method 2:
- Install the nvidia-driver-455 (ubuntu PPA).
- Install the CUDA 11.1 (using βdeb (network)β method).
- Trying to install the libnvidia-gl-455:i386 (ubuntu PPA) produces uninstalling CUDA 11.1 packages.
Is there a way to have both packages installed?
Edit:
After some tries, I finally made all work using βrunfile (local)β method.
Method 3 (NON PPA):
sudo apt-get --purge remove "*cublas*" "*cufft*" "*curand*" "*cusolver*" "*cusparse*" "*npp*" "*nvjpeg*" "cuda*" "nsight*"
sudo apt-get --purge remove "*nvidia*"
sudo reboot
wget https://developer.download.nvidia.com/compute/cuda/11.1.0/local_installers/cuda_11.1.0_455.23.05_linux.run
sudo sh cuda_11.1.0_455.23.05_linux.run
Is there a way to have both packages installed toguether using PPA?