linux卸载NVIDIA CUDA toolkit和 Driver驱动

拈花ヽ惹草 提交于 2019-12-15 18:23:24

不算原创,也不是翻译啦,算转载厂家原文

11. Removing CUDA Toolkit and Driver

Follow the below steps to properly uninstall the CUDA Toolkit and NVIDIA Drivers from your system. These steps will ensure that the uninstallation will be clean.

RHEL/CentOS

To remove CUDA Toolkit:

$ sudo yum remove "*cublas*" "cuda*"

To remove NVIDIA Drivers:

$ sudo yum remove "*nvidia*" 

Fedora

To remove CUDA Toolkit:

$ sudo dnf remove "*cublas*" "cuda*"

To remove NVIDIA Drivers:

$ sudo dnf remove "*nvidia*" 

OpenSUSE/SLES

To remove CUDA Toolkit:

$ sudo zypper remove "*cublas*" "cuda*"

To remove NVIDIA Drivers:

$ sudo zypper remove "*nvidia*" 

Ubuntu

To remove CUDA Toolkit:

$ sudo apt-get --purge remove "*cublas*" "cuda*"

To remove NVIDIA Drivers:

$ sudo apt-get --purge remove "*nvidia*"

厂家原文:卸载方式一样

deb 安装卸载: https://docs.nvidia.com/cuda/cuda-installation-guide-linux/index.html#package-manager-installation

run 安装卸载:  https://docs.nvidia.com/cuda/cuda-installation-guide-linux/index.html#runfile

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!