NVIDIA / libnvidia-container

NVIDIA container runtime library
Apache License 2.0
843 stars 205 forks source link

RHEL 8.6 support #179

Open jeffoxenberg opened 2 years ago

jeffoxenberg commented 2 years ago

Hello,

I am attempting to install libnvidia-container on RHEL 8.6 - any idea if/when there will be a package built for it in the repo?

distribution=$(. /etc/os-release;echo $ID$VERSION_ID) && curl -s -L https://nvidia.github.io/libnvidia-container/$distribution/libnvidia-container.repo | sudo tee /etc/yum.repos.d/nvidia-container-toolkit.repo Unsupported distribution! Check https://nvidia.github.io/libnvidia-container

Thanks!

elezar commented 2 years ago

Hi @jeffoxenberg I cannot give a date for when this will be available. For the time being please set distribution to rhel8.5 explicitly instead of relying on the contents of /etc/os-release:

distribution=rhel8.5 && curl -s -L https://nvidia.github.io/libnvidia-container/$distribution/libnvidia-container.repo | sudo tee /etc/yum.repos.d/nvidia-container-toolkit.repo