-
Notifications
You must be signed in to change notification settings - Fork 193
tutorials installNvidiaDocker
M1chaelM edited this page May 9, 2023
·
3 revisions
This is an optional step, but highly recommended if you have an Nvidia GPU available.
- Remove old versions of Nvidia Docker:
$ docker volume ls -q -f driver=nvidia-docker | xargs -r -I{} -n1 docker ps -q -a -f volume={} | xargs -r docker rm -f
$ sudo apt-get purge -y nvidia-docker
- Setup the Nvidia Docker repository. Choose only one block based on your
$ curl -s -L https://nvidia.github.io/nvidia-docker/gpgkey | sudo apt-key add -
$ distribution=$(. /etc/os-release;echo $ID$VERSION_ID)
$ curl -s -L https://nvidia.github.io/nvidia-docker/$distribution/nvidia-docker.list | \
sudo tee /etc/apt/sources.list.d/nvidia-docker.list
$ sudo apt-get update
- Next, install Nvidia Docker (version 2):
$ sudo apt-get install -y nvidia-docker2
- Then, restart the Docker daemon
$ sudo service docker restart
- Verify the installation:
$ docker run --runtime=nvidia --rm nvidia/cuda nvidia-smi
- [Ubuntu 18.04 users] Verify the installation:
$ docker run --runtime=nvidia --rm nvidia/cuda:9.1-devel nvidia-smi
This command should print your GPU information, for example...