How To Install octave-vibes on Kali Linux
Introduction
In this tutorial we learn how to install octave-vibes
on Kali Linux.
What is octave-vibes
octave-vibes is:
The VIBes API allows one to easily display results (boxes, pavings) from interval methods.
VIBes consists in two parts: (1) the VIBes application that features viewing, annotating and exporting figures, and (2) the VIBes API that enables your program to communicate with the viewer in order to draw figures.
This package integrates the VIBes API into Octave. The VIBes application is required for operation and must be installed separately. Data types from third-party interval arithmetic libraries for Octave are also supported.
This Octave add-on package is part of the Octave-Forge project.
There are three methods to install octave-vibes
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 octave-vibes Using apt-get
Update apt database with apt-get
using the following command.
sudo apt-get update
After updating apt database, We can install octave-vibes
using apt-get
by running the following command:
sudo apt-get -y install octave-vibes
Install octave-vibes Using apt
Update apt database with apt
using the following command.
sudo apt update
After updating apt database, We can install octave-vibes
using apt
by running the following command:
sudo apt -y install octave-vibes
Install octave-vibes 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 octave-vibes
using aptitude
by running the following command:
sudo aptitude -y install octave-vibes
How To Uninstall octave-vibes on Kali Linux
To uninstall only the octave-vibes
package we can use the following command:
sudo apt-get remove octave-vibes
Uninstall octave-vibes And Its Dependencies
To uninstall octave-vibes
and its dependencies that are no longer needed by Kali Linux, we can use the command below:
sudo apt-get -y autoremove octave-vibes
Remove octave-vibes Configurations and Data
To remove octave-vibes
configuration and data from Kali Linux we can use the following command:
sudo apt-get -y purge octave-vibes
Remove octave-vibes configuration, data, and all of its dependencies
We can use the following command to remove octave-vibes
configurations, data and all of its dependencies, we can use the following command:
sudo apt-get -y autoremove --purge octave-vibes
Dependencies
octave-vibes have the following dependencies:
References
Summary
In this tutorial we learn how to install octave-vibes
package on Kali Linux using different package management tools: apt
, apt-get
and aptitude
.