Last active
March 15, 2019 07:23
-
-
Save hzhan147/9f42f914440f4b1e2b7f8851e2e0d827 to your computer and use it in GitHub Desktop.
Install Nvidia CUDA
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
| #Download this CUDA deb https://developer.nvidia.com/compute/cuda/10.1/Prod/local_installers/cuda-repo-ubuntu1404-10-1-local-10.1.105-418.39_1.0-1_amd64.deb | |
| sudo dpkg -i cuda-repo-ubuntu1404-10-1-local-10.1.105-418.39_1.0-1_amd64.deb | |
| sudo apt-key add /var/cuda-repo-10-1-local-10.1.105-418.39/7fa2af80.pub | |
| sudo apt-get update | |
| sudo apt-get install cuda | |
| export PATH=/usr/local/cuda-10.1/bin:/usr/local/cuda-10.1/NsightCompute-2019.1${PATH:+:${PATH}} | |
| export LD_LIBRARY_PATH=/usr/local/cuda-10.1/lib64\ | |
| ${LD_LIBRARY_PATH:+:${LD_LIBRARY_PATH}} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment