不算原创,也不是翻译啦,算转载厂家原文
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
来源:CSDN
作者:航院小将
链接:https://blog.csdn.net/qi_yue_yu/article/details/103549107