-1

I'm trying to work on an OpenGL project at home on my Linux PC.

I got this error when launching my OpenGL project with "./executable"

I have already installed libglew-dev package, and also I can't find the file "libGLEW.so.1.10" in my directories.

I don't know how I could install it in the right place.

jww
  • 97,681
  • 90
  • 411
  • 885
Djinnmercure
  • 1
  • 1
  • 3
  • Yes, it is ubuntu – Djinnmercure Jan 04 '19 at 15:31
  • How was the executable built? And where? – Matthieu Brucher Jan 04 '19 at 15:37
  • 1
    [Setting up OpenGL on Ubuntu](https://stackoverflow.com/q/7842622/608639), [Installing OpenGL and OpenAL in Ubuntu](https://stackoverflow.com/q/3907064/608639), [How do I set up an OpenGL programming environment?](https://askubuntu.com/q/11378), [How to install OpenGL/GLUT libraries](https://askubuntu.com/q/96087), etc. – jww Jan 05 '19 at 00:27

1 Answers1

0

The dev package provides headers and source for you to, well, develop with.

Now, on the target machine, you need to install the normal package that provides the shared libraries.

The Ubuntu package list has some candidates: from your question it looks like you're using v1.10, so libglew1.10.

The documentation has some ways to do it manually without a package manager.

Lightness Races in Orbit
  • 378,754
  • 76
  • 643
  • 1,055