How To Install inventor-data on Kali Linux

In this tutorial we learn how to install inventor-data on Kali Linux. inventor-data is Open Inventor sample data files

Introduction

In this tutorial we learn how to install inventor-data on Kali Linux.

What is inventor-data

inventor-data is:

This package contains sample 3D model and scene files in inventor format.

Open Inventor is an object-oriented 3D toolkit offering a comprehensive solution to interactive graphics programming problems. It presents a programming model based on a 3D scene database that simplifies graphics programming. It includes a large set of objects such as cubes, polygons, text, materials, cameras, lights, trackballs, handle boxes, 3D viewers, and editors can speed up your programming and extend your 3D program’s capabilities.

There are three methods to install inventor-data on Kali Linux. We can use apt-get, apt and aptitude. In the following sections we will describe each method. You can choose one of them.

Install inventor-data Using apt-get

Update apt database with apt-get using the following command.

sudo apt-get update

After updating apt database, We can install inventor-data using apt-get by running the following command:

sudo apt-get -y install inventor-data

Install inventor-data Using apt

Update apt database with apt using the following command.

sudo apt update

After updating apt database, We can install inventor-data using apt by running the following command:

sudo apt -y install inventor-data

Install inventor-data Using aptitude

If you want to follow this method, you might need to install aptitude on Kali Linux first since aptitude is usually not installed by default on Kali Linux. Update apt database with aptitude using the following command.

sudo aptitude update

After updating apt database, We can install inventor-data using aptitude by running the following command:

sudo aptitude -y install inventor-data

How To Uninstall inventor-data on Kali Linux

To uninstall only the inventor-data package we can use the following command:

sudo apt-get remove inventor-data

Uninstall inventor-data And Its Dependencies

To uninstall inventor-data and its dependencies that are no longer needed by Kali Linux, we can use the command below:

sudo apt-get -y autoremove inventor-data

Remove inventor-data Configurations and Data

To remove inventor-data configuration and data from Kali Linux we can use the following command:

sudo apt-get -y purge inventor-data

Remove inventor-data configuration, data, and all of its dependencies

We can use the following command to remove inventor-data configurations, data and all of its dependencies, we can use the following command:

sudo apt-get -y autoremove --purge inventor-data

Dependencies

inventor-data have the following dependencies:

References

Summary

In this tutorial we learn how to install inventor-data package on Kali Linux using different package management tools: apt, apt-get and aptitude.