stereolabs / zed-docker

Docker images for the ZED SDK

Home Page:https://hub.docker.com/r/stereolabs/zed/

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Missing lnvcuvid.so.1

mmartin4972 opened this issue · comments

Hello,

I've upgraded from ZED SDK 2.8 to 3.2 and am trying to get my refactored code to pass our docker build. I've followed the steps for downloading and installing the new version of the ZED SDK in the docker image, however when I run my test code I get the following error:

/usr/bin/ld: warning: libnvcuvid.so.1, needed by /usr/local/zed/lib/libsl_zed.so, not found (try using -rpath or -rpath-link)

I've tried to create an nvidia-docker to enable nvidia drivers in the docker image, however nvidia-docker requires an nvidia gpu which is not something that the Travis CI system supports. Do you have any ideas how I can solve this issue other than creating an nvidia-docker image? Any help would be greatly appreciated.

Here is the link to my build.

Hi,
nvcuvid is installed by NVIDIA drivers and is required for the sdk.
If you want to use travis for build only, I think it's possible to have a cuda compatible travis file, but that will work for build only.
Maybe the following repository can help you :
https://github.com/jeremad/cuda-travis

That was very helpful. Thanks for you response!