alphafold icon indicating copy to clipboard operation
alphafold copied to clipboard

Unable to find image 'nvidia/cuda:11.0-base' locally

Open jimchen1551 opened this issue 1 year ago • 3 comments

Screenshot 2023-07-29 at 12 07 18

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'.

jimchen1551 avatar Jul 29 '23 04:07 jimchen1551

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

alexholehouse avatar Aug 02 '23 00:08 alexholehouse

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

laolanllx avatar Aug 04 '23 02:08 laolanllx

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.

emilyrkang avatar May 03 '24 21:05 emilyrkang