今天早上打开电脑发现电脑屏幕分辨率变得不正常,在终端下输入“nvidia-smi”报下面的错误:
NVIDIA-SMI has failed because it couldn’t communicate with the NVIDIA driver. Ma ke sure that the latest NVIDIA driver is installed and running.
这应该是显卡驱动的问题,一天下来尝试了各种办法,包括博客常见的方法以及重装cuda和显卡驱动等,但还是无效。最终在一篇博客下的评论下看到一个说可能跟gcc版本有关系,一言惊醒梦中人!!!突然想起之前在搭建服务器的时候因为下载uwsgi错误而修改了gcc版本。于是把gcc从4.8改回7.5,重新启动后终于回复了正常!!!
sudo update-alternatives --install /usr/bin/gcc gcc /usr/bin/gcc-7 100
sudo update-alternatives --install /usr/bin/g++ g++ /usr/bin/g++-7 100
由于重装了cuda和显卡驱动,后续还得重装cudnn,所以遇到类似问题可以想考虑一下是不是gcc版本问题,先修改gcc版本看看,重装cuda和显卡驱动等太麻烦了,可以留到最后实在不行再重装。