Snippets

Jesse Almanrode Nvidia Cuda Uninstaller

Created by Jesse Almanrode last modified
#!/usr/bin/env bash
# Uninstall CUDA Driver on OS X
# This simple script was created based off the following threads:
# https://discussions.apple.com/thread/5985600?tstart=0
# https://devtalk.nvidia.com/default/topic/520257/uninstall-cuda-in-mac-/

files="/Library/Frameworks/CUDA.framework
/Library/LaunchAgents/com.nvidia.CUDASoftwareUpdate.plist
/Library/PreferencePanes/CUDA\ Preferences.prefPane/
/System/Library/Extensions/CUDA.kext
/usr/local/cuda/lib/libcuda.dylib"


MY_UID=$(id | grep 'uid=0(root)');
if [ -z "$MY_UID" ]; then
    echo "You must run this tool as root or using sudo";
    exit 1;
fi

echo "$files" | while read line; do
    echo "Uninstalling $line";
    rm -rf "$line" 2> /dev/null;
done

echo "Finished uninstalling CUDA... Please restart to finish uninstall";
exit 0;

Comments (0)

HTTPS SSH

You can clone a snippet to your computer for local editing. Learn more.