Created
July 5, 2017 22:31
-
-
Save digvijayky/85faa8a82d907564d462d0bc045a4974 to your computer and use it in GitHub Desktop.
Install NVIDIA DIGITS on Ubuntu
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
#Install DIGITS 4 on Ubuntu 16.04 (Reference: https://github.com/NVIDIA/DIGITS/blob/master/docs/UbuntuInstall.md) | |
CUDA_REPO_PKG=http://developer.download.nvidia.com/compute/cuda/repos/ubuntu1604/x86_64/cuda-repo-ubuntu1604_8.0.61-1_amd64.deb | |
ML_REPO_PKG=http://developer.download.nvidia.com/compute/machine-learning/repos/ubuntu1604/x86_64/nvidia-machine-learning-repo-ubuntu1604_1.0.0-1_amd64.deb | |
wget "$CUDA_REPO_PKG" -O /tmp/cuda-repo.deb && sudo dpkg -i /tmp/cuda-repo.deb && rm -f /tmp/cuda-repo.deb | |
wget "$ML_REPO_PKG" -O /tmp/ml-repo.deb && sudo dpkg -i /tmp/ml-repo.deb && rm -f /tmp/ml-repo.deb | |
sudo apt-get -y update | |
sudo apt-get install -y digits |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment