alphafold
alphafold copied to clipboard
Unable to find image 'nvidia/cuda:11.0-base' locally
I've followed the instructions in Nvidia container toolkit and Docker as a non-root user, but as I ran the command
docker run --rm --gpus all nvidia/cuda:11.0-base nvidia-smi
it showed the following error:
Unable to find image 'nvidia/cuda:11.0-base' locally'
docker: Error response from daemon: manifest for nvidia/cuda:11.0-base not found: manifest unknown: manifest unknown.
See 'docker run --help'.
I believe this is because the image was removed, as per this comment.
On Ubuntu 20.04 the following should work:
docker run --rm --gpus all nvidia/cuda:11.0.3-base-ubuntu20.04 nvidia-smi
I believe this is because the image was removed, as per this comment.
On Ubuntu 20.04 the following should work:
docker run --rm --gpus all nvidia/cuda:11.0.3-base-ubuntu20.04 nvidia-smi
This also works for Ubuntu 22.04
I have the same issue when I try to run: docker run --rm --gpus all nvidia/cuda:11.0-base nvidia-smi
or docker run --rm --gpus all nvidia/cuda:11.0.3-base-ubuntu22.04 nvidia-smi
However, when I try to run: docker run --rm --gpus all nvidia/cuda:11.0.3-base-ubuntu20.04 nvidia-smi
I'm getting this error:
docker: Error response from daemon: failed to create task for container: failed to create shim task: OCI runtime create failed: runc create failed: unable to start container process: error during container init: error running hook #0: error running hook: exit status 1, stdout: , stderr: Auto-detected mode as 'legacy'
nvidia-container-cli: initialization error: load library failed: libnvidia-ml.so.1: cannot open shared object file: no such file or directory: unknown.
The output from docker run hello-world
is as expected.