google-deepmind / alphafold

Open source code for AlphaFold.
Apache License 2.0
12.3k stars 2.2k forks source link

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

Open jimchen1551 opened 1 year ago

jimchen1551 commented 1 year ago
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'.
alexholehouse commented 1 year ago

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

laolanllx commented 1 year ago

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

emilyrkang commented 4 months ago

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.