ZED SDK error while loading shared libraries: libGLEW.so.1.13: cannot open shared objects file: no such file or directory

I am trying to start the ZED Explorer application from the ZED SDK. But when I do this, I get this error:

when loading shared libraries: libGLEW.so.1.13: cannot open shared object file: No such file or directory

I tried to fix this using other solutions mentioned in SO, but no luck.

+5
source share
1 answer

It looks like your software needs the GLEW library, and you lack the generic libGLEW.so.1.13 library, so you need to install it. Search for it through aptitude or apt-cache:

sudo apt-cache search libGLEW 

shows that it belongs to the GLEW library. Therefore, install the library through:

 sudo apt-get install glew-utils 
+1
source

Source: https://habr.com/ru/post/1266044/


All Articles