Development

[Nvidia] NVIDIA-SMI has failed because it couldn't communicate with the NVIDIA driver. Make sure that the latest NVIDIA driver is installed and running.

jstar0525 2021. 6. 18. 16:14
반응형

Jetson SDKManger를 설치하고

nvidia-smi를 실행하면 아래와 같이 뜨며, 그래픽카드를 사용할 수 없었다.

 

$ nvidia-smi

NVIDIA-SMI has failed because it couldn't communicate with the NVIDIA driver. Make sure that the latest NVIDIA driver is installed and running.

 

 

 


아래의 링크를 따라서,

nvidia driver를 다시 설치하여 문제를 해결하였다.

 

https://bluecolorsky.tistory.com/52

 

[정보] nvidia-smi 실행 시 couldn't communicate with the NVIDIA driver 오류 해결하기

최근 딥러닝이 대세가 되면서 많은 곳에서 딥러닝 기술을 개발하거나 제품에 적용하고 있다. 딥러닝으로 데이터를 입력하여 출력을 얻기 위해서는 많은 컴퓨팅 자원이 필요하며, 특히 GPU가 대

bluecolorsky.tistory.com

 


 

(1) Nvidia driver version 확인

$ apt --installed list | grep nvidia-driver

 

(2) nvidia driver 제거

$ sudo apt remove nvidia-dirver-<설치된 버전>
$ sudo apt remove nvidia-dirver-460
$ sudo apt autoremove

 

(3) nvidia driver 설치 후 재부팅

$ sudo apt-get install nvidia-driver-<이전 설치된 버전>
$ sudo apt-get install nvidia-driver-460
$ sudo reboot
반응형