web-dev-qa-db-fra.com

Ubuntu 14.04: Installation de cuda 7

Je suis la procédure donnée ici:
http://www.r-tutor.com/gpu-computing/cuda-installation/cuda6.5-ubunt

Cependant, après avoir fait Sudo apt-get install cuda, je reçois le message suivant:

You might want to run 'apt-get -f install' to correct these:
The following packages have unmet dependencies:
cuda-drivers : Depends: nvidia-opencl-icd-346 (>= 346.46) but it is not going to be installed
E: Unmet dependencies. Try 'apt-get -f install' with no packages (or specify a solution).


Après avoir entré Sudo apt-get -f install, je reçois le message suivant:

Preparing to unpack .../nvidia-opencl-icd-346_346.46-0ubuntu1_AMD64.deb ...
Unpacking nvidia-opencl-icd-346 (346.46-0ubuntu1) ...
dpkg: error processing archive /var/cache/apt/archives/nvidia-opencl-icd-346_346.46-0ubuntu1_AMD64.deb (--unpack):
 trying to overwrite '/etc/OpenCL/vendors/nvidia.icd', which is also in package nvidia-opencl-icd-331 331.113-0ubuntu0.0.4
Errors were encountered while processing:
 /var/cache/apt/archives/nvidia-opencl-icd-346_346.46-0ubuntu1_AMD64.deb
E: Sub-process /usr/bin/dpkg returned an error code (1)

http://docs.nvidia.com/cuda/cuda-toolkit-release-notes/index.html#axzz3VF4pSfRr
demander à retirer le colis.

Comment faire ça?

p.s. Sudo apt-get install cuda-runtime-7-0 donne la même erreur.

3
tejaskhot

J'ai réussi à le faire fonctionner après avoir exécuté les commandes suivantes:

Sudo apt-get clean  
Sudo apt-get autoclean  
Sudo apt-get autoremove  
Sudo apt-get install -f  
4
tejaskhot

J'ai pu éliminer cette erreur en recherchant d'abord les fichiers nvidia-opencl-icd-* à l'aide de la commande suivante:

Sudo find / -name nvidia-opencl-icd-\*

Puis j'ai supprimé tous les fichiers avec le préfixe suivant

nvidia-opencl-icd-\*

et ensuite couru:

Sudo apt-get -f install

3
cocobutters