Felixkruemel
Felixkruemel

Reputation: 514

How can I get the Vulkan API working in Google Colab

I tried running realsr-ncnn-vulkan to just test upscaling a simple image on Google's Colab platform. https://github.com/nihui/realsr-ncnn-vulkan

The problem is that once I try to run it I'm getting the error

error while loading shared libraries: libvulkan.so.1: cannot open shared object file: No such file or directory

So what do I need to install prior before running it? Or is there no way to get vulkan working despite the pretty powerful GPU?

Upvotes: 2

Views: 1581

Answers (1)

Szabolcs Dombi
Szabolcs Dombi

Reputation: 5783

You are missing the libraries:

depending on your setup you need:

dnf install vulkan-headers vulkan-loader-devel

or

apt-get install libvulkan-dev

or

pacman -S vulkan-headers vulkan-icd-loader

Upvotes: 4

Related Questions