Created
March 30, 2016 13:44
-
-
Save cagbal/3dd87c74dad15717d2f400caeff6cb55 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // Go to additional drivers | |
| // Install tested version of NVIDIA Driver | |
| // Reboot PC | |
| // http://www.r-tutor.com/gpu-computing/cuda-installation/cuda7.5-ubuntu | |
| // Download https://developer.nvidia.com/cuda-downloads | |
| sudo dpkg -i cuda-repo-ubuntu1404_7.5-18_amd64.deb | |
| sudo apt-get update | |
| sudo apt-get install cuda | |
| // Reboot PC | |
| export CUDA_HOME=/usr/local/cuda-7.5 | |
| export LD_LIBRARY_PATH=${CUDA_HOME}/lib64 | |
| PATH=${CUDA_HOME}/bin:${PATH} | |
| export PATH | |
| // Check the samples | |
| cuda-install-samples-7.5.sh ~ | |
| cd ~/NVIDIA_CUDA-7.5_Samples | |
| cd 1_Utilities/deviceQuery | |
| make | |
| ./deviceQuery // This should print you some info | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment