所以一夜之间我遇到了CUDA / Nvidia的问题。如果我在我的VM上运行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.
答案 0 :(得分:2)
您可以尝试以下解决方法并检查它是否可以解决问题。
此示例解决方案在Google Compute Engine上完成,其中包含 NVIDIA Tesla K80 和 Ubuntu 16.04 。根据操作系统可能需要进行更改。
curl -O http://developer.download.nvidia.com/compute/cuda/repos/ubuntu1604/x86_64/cuda-repo-ubuntu1604_8.0.61-1_amd64.deb
sudo dpkg -i ./cuda-repo-ubuntu1604_8.0.61-1_amd64.deb
sudo apt-get update
sudo apt-get install cuda-8-0 cuda-drivers=384.111-1 -y
检查
nvidia-smi
希望这有帮助。