Fawad Ahmad
Fawad Ahmad

Reputation: 81

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

I'm trying to run the ZED Explorer application from ZED SDK. But when I do that, I get this error:

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

I tried to fix it using the other solutions mentioned on SO but didn't have any luck.

Upvotes: 8

Views: 4279

Answers (1)

expiring_noob
expiring_noob

Reputation: 57

It appears that your software needs the GLEW library, and you're missing the shared library libGLEW.so.1.13, so you have to install it. Looking for it through aptitude or apt-cache:

sudo apt-cache search libGLEW

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

sudo apt-get install glew-utils

Upvotes: 3

Related Questions