web-dev-qa-db-fra.com

Comment installer CUDA 8 sur Ubuntu 18.04 LTS?

Ubuntu 18.04 TLS a migré vers CUDA 9.1, ce qui rend obsolète l’architecture Nvidia Fermi.

J'ai essayé d'installer le toolkit cuda 8 de nvidia avec une option --override (pour ignorer la vérification du compilateur), mais l'installation a échoué de la manière suivante:

Commande: Sudo ./cuda_8.0.61_375.26_linux.run --override --toolkitpath /usr/local/cuda-8.0/

Sortie:

You are attempting to install on an unsupported configuration. Do you wish to continue?
(y)es/(n)o [ default is no ]: y

Install NVIDIA Accelerated Graphics Driver for Linux-x86_64 375.26?
(y)es/(n)o/(q)uit: n

Install the CUDA 8.0 Toolkit?
(y)es/(n)o/(q)uit: y

Enter Toolkit Location
 [ default is /usr/local/cuda-8.0 ]: /usr/local/cuda-8.0

Do you want to install a symbolic link at /usr/local/cuda?
(y)es/(n)o/(q)uit: y

Install the CUDA 8.0 Samples?
(y)es/(n)o/(q)uit: y

Enter CUDA Samples Location
 [ default is /home/user ]: 

Installing the CUDA Toolkit in /usr/local/cuda-8.0 ...
Warning: cannot find Toolkit in /usr/local/cuda-8.0. Use --toolkitpath to specify the toolkit location.
Installing the CUDA Samples in /home/user ...
sh: 1: /usr/local/cuda-8.0/bin/cuda-install-samples-8.0.sh: not found
chown: cannot access '/home/user/NVIDIA_CUDA-8.0_Samples': No such file or directory

===========
= Summary =
===========

Driver:   Not Selected
Toolkit:  Installation Failed
Samples:  Installation Failed
2
Blue Squirrel

J'ai résolu le problème en utilisant la procédure suivante:

  1. décompressez le fichier .run en utilisant la commande: ./cuda*.run --tar mxvf
  2. copier le fichier non compressé InstallUtils.pm dans/usr/lib/x86_64-linux-gnu/Perl-base
  3. entrez la commande dans le terminal: export $Perl5LIB
2
Blue Squirrel

Il existe deux manières plus propres de résoudre ce problème:

  1. Définissez le répertoire actuel comme chemin de recherche de la bibliothèque Perl par: Perl5LIB=. sh cuda_8.0.61_375.26_linux.run your-other-options. Relatif lien .
  2. Installez le module Perl manquant avec: Sudo apt install module-install-Perl. Relatif lien
1
John Smith