How To Install libhugs-opengl-bundled on Debian 12
Introduction
In this tutorial we learn how to install libhugs-opengl-bundled
on Debian 12.
What is libhugs-opengl-bundled
libhugs-opengl-bundled is:
A Haskell binding for the OpenGL graphics system (GL, version 1.5) and its accompanying utility library (GLU, version 1.3). OpenGL is the industry’s most widely used and supported 2D and 3D graphics application programming interface (API), incorporating a broad set of rendering, texture mapping, special effects, and other powerful visualization functions. For more information about OpenGL, please see: http://www.opengl.org/.
This is the version bundled with the interpreter.
There are three methods to install libhugs-opengl-bundled
on Debian 12. We can use apt-get
, apt
and aptitude
. In the following sections we will describe each method. You can choose one of them.
Install libhugs-opengl-bundled Using apt-get
Update apt database with apt-get
using the following command.
sudo apt-get update
After updating apt database, We can install libhugs-opengl-bundled
using apt-get
by running the following command:
sudo apt-get -y install libhugs-opengl-bundled
Install libhugs-opengl-bundled Using apt
Update apt database with apt
using the following command.
sudo apt update
After updating apt database, We can install libhugs-opengl-bundled
using apt
by running the following command:
sudo apt -y install libhugs-opengl-bundled
Install libhugs-opengl-bundled Using aptitude
If you want to follow this method, you might need to install aptitude first since aptitude is usually not installed by default on Debian. Update apt database with aptitude
using the following command.
sudo aptitude update
After updating apt database, We can install libhugs-opengl-bundled
using aptitude
by running the following command:
sudo aptitude -y install libhugs-opengl-bundled
How To Uninstall libhugs-opengl-bundled on Debian 12
To uninstall only the libhugs-opengl-bundled
package we can use the following command:
sudo apt-get remove libhugs-opengl-bundled
Uninstall libhugs-opengl-bundled And Its Dependencies
To uninstall libhugs-opengl-bundled
and its dependencies that are no longer needed by Debian 12, we can use the command below:
sudo apt-get -y autoremove libhugs-opengl-bundled
Remove libhugs-opengl-bundled Configurations and Data
To remove libhugs-opengl-bundled
configuration and data from Debian 12 we can use the following command:
sudo apt-get -y purge libhugs-opengl-bundled
Remove libhugs-opengl-bundled configuration, data, and all of its dependencies
We can use the following command to remove libhugs-opengl-bundled
configurations, data and all of its dependencies, we can use the following command:
sudo apt-get -y autoremove --purge libhugs-opengl-bundled
Dependencies
libhugs-opengl-bundled have the following dependencies:
References
Summary
In this tutorial we learn how to install libhugs-opengl-bundled
package on Debian 12 using different package management tools: apt
, apt-get
and aptitude
.