Skip to content

Instantly share code, notes, and snippets.

@donchev7
Last active May 7, 2023 19:10
Show Gist options
  • Save donchev7/902e8da57921a1ef63115a797fe97458 to your computer and use it in GitHub Desktop.
Save donchev7/902e8da57921a1ef63115a797fe97458 to your computer and use it in GitHub Desktop.
#!/bin/bash
set -e
export distribution=$(. /etc/os-release;echo $ID$VERSION_ID)
curl -s -L https://nvidia.github.io/nvidia-docker/gpgkey | apt-key add -
curl -s -L https://nvidia.github.io/nvidia-docker/$distribution/nvidia-docker.list | tee /etc/apt/sources.list.d/nvidia-docker.list
# Because of Microsoft not properly installing cuda :/
set +e
sleep 20
ps -ef | grep apt | awk '{ print $2 }' | xargs kill -9
set -e
apt-get update
dpkg --configure -a
apt-get install -y nvidia-driver-470 nvidia-cuda-toolkit
apt-get install -y nvidia-docker2
systemctl restart docker
docker run --rm --gpus all --ipc=host nvidia/cuda:10.1-base nvidia-smi | grep "Driver Version"
if [ $? -eq 0 ]
then
echo "All good"
else
echo "nvidia docker install error"
exit 1
fi
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment