Skip to content

Instantly share code, notes, and snippets.

@ShigekiKarita
Created October 9, 2015 19:11
Show Gist options
  • Star 10 You must be signed in to star a gist
  • Fork 2 You must be signed in to fork a gist
  • Save ShigekiKarita/54731e20dad3482d70ec to your computer and use it in GitHub Desktop.
Save ShigekiKarita/54731e20dad3482d70ec to your computer and use it in GitHub Desktop.
How to install CUDA7.5 on Ubuntu 14.04
sudo add-apt-repository ppa:graphics-drivers/ppa
sudo apt-get --purge remove "nvidia*"
sudo apt-get --purge remove "cuda*"
wget http://developer.download.nvidia.com/compute/cuda/7.5/Prod/local_installers/cuda-repo-ubuntu1404-7-5-local_7.5-18_amd64.deb
sudo dpkg -i cuda-repo-ubuntu1404-7-5-local_7.5-18_amd64.deb
sudo apt-get update
sudo apt-get upgrade
sudo apt-get install cuda
# if nvidia-352 break my desktop env, then reinstall without libcheese*
sudo apt-get install nvidia-current
sudo reboot
sudo apt-get --purge remove "libcheese*"
sudo apt-get install cuda
sudo apt-get install ubuntu-desktop
sudo reboot
@mrtortong
Copy link

Thank you.

@SerendipityAI
Copy link

I salute you!

@hxp33
Copy link

hxp33 commented Jan 11, 2017

thank you

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment