CUDA 9.1 - Biblioteca recomendada ausente

1

Aqui está minha saída de terminal da instalação do CUDA 9.1:

Installing the NVIDIA display driver...
Installing the CUDA Toolkit in /usr/local/cuda-9.1 ...
Missing recommended library: libGLU.so
Missing recommended library: libX11.so
Missing recommended library: libXi.so
Missing recommended library: libXmu.so

Installing the CUDA Samples in /home/username ...
Copying samples to /home/username/NVIDIA_CUDA-9.1_Samples now...
Finished copying samples.

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

Driver:   Installed
Toolkit:  Installed in /usr/local/cuda-9.1
Samples:  Installed in /home/username, but missing recommended libraries

Please make sure that
 -   PATH includes /usr/local/cuda-9.1/bin
 -   LD_LIBRARY_PATH includes /usr/local/cuda-9.1/lib64, or, add  
/usr/local/cuda-9.1/lib64 to /etc/ld.so.conf and run ldconfig as root

To uninstall the CUDA Toolkit, run the uninstall script in /usr/local
/cuda-9.1/bin
To uninstall the NVIDIA Driver, run nvidia-uninstall

Please see CUDA_Installation_Guide_Linux.pdf in /usr/local/cuda-  
9.1/doc/pdf for detailed information on setting up CUDA.

Logfile is /tmp/cuda_install_11273.log

É necessário corrigir esses missing recommended libraries e como posso fazer as inclusões PATH / LD_LIBRARY_PATH para que a CUDA seja executada corretamente?

    
por PortWein 22.01.2018 / 20:12

1 resposta

0

executar:

sudo apt-get install g++ freeglut3-dev build-essential libx11-dev \
    libxmu-dev libxi-dev libglu1-mesa libglu1-mesa-dev

e você vai ficar bem. leia mais aqui

    
por Breeze 12.04.2018 / 23:36