lablglut command not found

In this troubleshooting guide we learn how to fix lablglut command not found error message

Introduction

When you run more command in linux terminal / console, you get the following error message

lablglut: command not found

or when using sudo you get the following error message

sudo: lablglut: command not found

Solutions to lablglut: command not found

How To Fix lablglut: command not found in Ubuntu / Debian / Kali Linux / Raspbian

In Ubuntu lablglut is provided by liblablgl-ocaml-dev package.

liblablgl-ocaml-dev is:

LablGL gives access to the OpenGL interface from Objective Caml. Since it includes support for the Togl widget, you can comfortably use it with LablTk. A GtkGlarea binding for use with lablgtk is also provided.

To fix this problem, we can install more using the command below.

sudo apt-get -y install liblablgl-ocaml-dev

This command might take some time to finish depending on your machine internet connection.

You can also use apt command to install liblablgl-ocaml-dev.

sudo apt -y install liblablgl-ocaml-dev

Or if you have aptitude installed you can use the following command.

sudo aptitude install liblablgl-ocaml-dev

Summary

In this tutorial we learn how to fix lablglut command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.