Installation Issue rhel 7.6, cuda 10.1.105 -- vulkan-filesystem missing

Hi,

I’m trying to install cuda 10.1.105 onto rhel 7.6.

During installation:
sudo yum install cuda

I see this message:
→ Processing Dependency: vulkan-filesystem for package: 3:nvidia-driver-libs-418.39-4.el7.x86_64
→ Finished Dependency Resolution
Error: Package: 3:nvidia-driver-libs-418.39-4.el7.x86_64 (cuda)
Requires: vulkan-filesystem

Anyone know best way to resolve this?

Thank you!

sudo yum install vulkan-filesystem

?

I tried that at first but it didn’t work.
In the end I downloaded a vulkan-filesystem rpm from centos and then installed it to get it going.

But I have Red Hat. Is there a reason that Nvidia is requiring a filesystem from CentOS rather than that’s available from Red Hat?

vulkan-filesystem package is distributed from rhel-7-server-e4s-optional-rpms repository; which is not enabled in the default. Does the command below make sense?

yum install cuda --enablerepo=rhel-7-server-e4s-optional-rpms

Thank you KaiGai, that should do it.