NVIDIA / libnvidia-container

NVIDIA container runtime library

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Linux Mint is missing from supported distributions

playervalley opened this issue · comments

Linux Mint is based on Ubuntu, so it should work, but it doesn't.

i.e. Linux Mint is not listed on https://nvidia.github.io/libnvidia-container/

What do you mean it doesn't work. When following the instructions in the documentation please explicitly set the distrubution to ubuntu18.04:

 distribution=ubuntu18.04 \
      && curl -fsSL https://nvidia.github.io/libnvidia-container/gpgkey | sudo gpg --dearmor -o /usr/share/keyrings/nvidia-container-toolkit-keyring.gpg \
      && curl -s -L https://nvidia.github.io/libnvidia-container/experimental/$distribution/libnvidia-container.list | \
         sed 's#deb https://#deb [signed-by=/usr/share/keyrings/nvidia-container-toolkit-keyring.gpg] https://#g' | \
         sudo tee /etc/apt/sources.list.d/nvidia-container-toolkit.list

(or similar for the "experimental" repositories)

This should allow compatible packages to be installable for Linux Mint.

When I used the code from the aforementioned documentation, the terminal printed this message:

# Unsupported distribution!
# Check https://nvidia.github.io/libnvidia-container

That's what I meant by "it doesn't work". After using your command, it installed just fine. Thank you for the help!