Skip to content

Instantly share code, notes, and snippets.

View sushantkumar23's full-sized avatar
🎯
Focusing

Sushant sushantkumar23

🎯
Focusing
View GitHub Profile
@allenday
allenday / install-cuda.sh
Created June 7, 2017 02:59
Install CUDA debian package
#!/bin/bash
echo "Checking for CUDA and installing."
# Check for CUDA and try to install.
if ! dpkg-query -W cuda; then
# The 16.04 installer works with 16.10.
curl -O http://developer.download.nvidia.com/compute/cuda/repos/ubuntu1604/x86_64/cuda-repo-ubuntu1604_8.0.61-1_amd64.deb
dpkg -i ./cuda-repo-ubuntu1604_8.0.61-1_amd64.deb
apt-get update
apt-get install cuda -y
fi