How To Install liboce-visualization-dev on Debian 12
Introduction
In this tutorial we learn how to install liboce-visualization-dev
on Debian 12.
What is liboce-visualization-dev
liboce-visualization-dev is:
OpenCASCADE is a suite for 3D surface and solid modeling, visualization, data exchange and rapid application development. It is an excellent platform for development of numerical simulation software including CAD/CAM/CAE, AEC and GIS, as well as PDM applications.
This package contains the headers and symlinks for libraries shipped by liboce-visualization11.
There are three methods to install liboce-visualization-dev
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 liboce-visualization-dev Using apt-get
Update apt database with apt-get
using the following command.
sudo apt-get update
After updating apt database, We can install liboce-visualization-dev
using apt-get
by running the following command:
sudo apt-get -y install liboce-visualization-dev
Install liboce-visualization-dev Using apt
Update apt database with apt
using the following command.
sudo apt update
After updating apt database, We can install liboce-visualization-dev
using apt
by running the following command:
sudo apt -y install liboce-visualization-dev
Install liboce-visualization-dev 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 liboce-visualization-dev
using aptitude
by running the following command:
sudo aptitude -y install liboce-visualization-dev
How To Uninstall liboce-visualization-dev on Debian 12
To uninstall only the liboce-visualization-dev
package we can use the following command:
sudo apt-get remove liboce-visualization-dev
Uninstall liboce-visualization-dev And Its Dependencies
To uninstall liboce-visualization-dev
and its dependencies that are no longer needed by Debian 12, we can use the command below:
sudo apt-get -y autoremove liboce-visualization-dev
Remove liboce-visualization-dev Configurations and Data
To remove liboce-visualization-dev
configuration and data from Debian 12 we can use the following command:
sudo apt-get -y purge liboce-visualization-dev
Remove liboce-visualization-dev configuration, data, and all of its dependencies
We can use the following command to remove liboce-visualization-dev
configurations, data and all of its dependencies, we can use the following command:
sudo apt-get -y autoremove --purge liboce-visualization-dev
Dependencies
liboce-visualization-dev have the following dependencies:
- liboce-foundation-dev
- liboce-modeling-dev
- liboce-ocaf-lite-dev
- liboce-visualization11
- libx11-dev
- libxmu-dev
- libxext-dev
- libfreetype6-dev
- libgl1-mesa-dev
- libglu1-mesa-dev
- libgl2ps-dev
- libfreeimage-dev
References
Summary
In this tutorial we learn how to install liboce-visualization-dev
package on Debian 12 using different package management tools: apt
, apt-get
and aptitude
.