Skip to content

Instantly share code, notes, and snippets.

@pragyanatvade
Last active August 20, 2016 03:49
Show Gist options
  • Save pragyanatvade/979480ce5b582517ee15 to your computer and use it in GitHub Desktop.
Save pragyanatvade/979480ce5b582517ee15 to your computer and use it in GitHub Desktop.
Installing CUDA 6.5 In Linux Mint 17

Setting Up CUDA Repository

Cuda Downloads

sudo dpkg -i cuda-repo-ubuntu1404_6.5-14_amd64.deb

sudo apt-get update

Install CUDA Toolkit

sudo apt-get install cuda

Set Environment Variables

export CUDA_HOME=/usr/local/cuda-6.5

export LD_LIBRARY_PATH=${LD_LIBRARY_PATH}:${CUDA_HOME}/lib64

PATH=${CUDA_HOME}/bin:${PATH}

export PATH

Install CUDA Samples

cuda-install-samples-6.5.sh ~/Samples/

cd ~/Samples/NVIDIA_CUDA-6.5_Samples

make

Cinnamon Crash

sudo apt-get install nvidia-prime

Theano Install

sudo apt-get install python-numpy python-scipy python-dev python-pip python-nose g++ libopenblas-dev git
sudo pip install Theano
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment