erro nvcc, “no command” verificando a instalação do CUDA 10 no Debian 9 Stretch

0

Eu instalei o CUDA10.0 no Debian 9 Stretch com a ajuda deste Guia de instalação do Debian CUDA no StackExchange

Após a instalação do CUDA, a verificação da instalação gera este erro:

$ nvcc -V
$ No command 'nvcc' found

A alteração do PATH e do LD_LIBRARY_PATH ajudou a verificar o software temporariamente, mas sempre que abri outro terminal e tentei verificar, recebi o erro novamente.

    
por Kelly 09.11.2018 / 22:40

1 resposta

0

Solution: Permanently change PATH & LD_LIBRARY_PATH by editing the .bashrc file

Consertar:
  1. Crie o arquivo .bashrc no diretório ~ / home

$ cd ~/

$ sudo touch .bashrc

  1. Insira o arquivo:

$ sudo gedit .bashrc

3. Role até o botton e adicione PATHs ao arquivo .bashrc:

#CUDA Environment Setup
export PATH=/usr/local/cuda-10.0/bin${PATH:+:${PATH}}
export LD_LIBRARY_PATH=/usr/local/cuda-10.0/lib64\${LD_LIBRARY_PATH:+:${LD_LIBRARY_PATH}}

Salvar arquivo.

Reinicie.

Abrir novo terminal:

$   nvcc -V

Resultado:

nvcc: NVIDIA (R) Cuda compiler driver
Copyright (c) 2005-2018 NVIDIA Corporation
Built on Sat_Aug_25_21:08:01_CDT_2018
Cuda compilation tools, release 10.0, V10.0.130

Documentação do CUDA Toolkit aqui

    
por 09.11.2018 / 22:40

Tags