Nvidia一夜之间出错

时间:2018-01-10 23:13:28

标签: google-cloud-platform google-compute-engine

所以一夜之间我遇到了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.

1 个答案:

答案 0 :(得分:2)

您可以尝试以下解决方法并检查它是否可以解决问题。

此示例解决方案在Google Compute Engine上完成,其中包含 NVIDIA Tesla K80 Ubuntu 16.04 。根据操作系统可能需要进行更改。

步骤

  1. curl -O http://developer.download.nvidia.com/compute/cuda/repos/ubuntu1604/x86_64/cuda-repo-ubuntu1604_8.0.61-1_amd64.deb
  2. sudo dpkg -i ./cuda-repo-ubuntu1604_8.0.61-1_amd64.deb
  3. sudo apt-get update
  4. sudo apt-get install cuda-8-0 cuda-drivers=384.111-1 -y
  5. 检查

    nvidia-smi
    

    希望这有帮助。