How To Install libsciplot1 on Kali Linux
Introduction
In this tutorial we learn how to install libsciplot1
on Kali Linux.
What is libsciplot1
libsciplot1 is:
The SciPlot Widget is a widget capable of plotting Cartesian or polar graphs, including logarithmic axes in Cartesian plots. The widget is subclassed directly from the Core widget class, which means that it does not depend upon any other widget set. It may be freely used with Athena, Motif, or the Open Look/Xview widget sets. (There is optional Motif support that causes the widget to be subclassed from XmPrimitive. See the man page.)
Features provided in the widget include automatic scaling, legend drawing, axis labeling, PostScript output, multiple plotted lines, color support, user font specification, dashed lines, symbols drawn at points, logarithmic scales on one or both axes in Cartesian plots, and degrees or radians as angles in polar plots.
There are three methods to install libsciplot1
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 libsciplot1 Using apt-get
Update apt database with apt-get
using the following command.
sudo apt-get update
After updating apt database, We can install libsciplot1
using apt-get
by running the following command:
sudo apt-get -y install libsciplot1
Install libsciplot1 Using apt
Update apt database with apt
using the following command.
sudo apt update
After updating apt database, We can install libsciplot1
using apt
by running the following command:
sudo apt -y install libsciplot1
Install libsciplot1 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 libsciplot1
using aptitude
by running the following command:
sudo aptitude -y install libsciplot1
How To Uninstall libsciplot1 on Kali Linux
To uninstall only the libsciplot1
package we can use the following command:
sudo apt-get remove libsciplot1
Uninstall libsciplot1 And Its Dependencies
To uninstall libsciplot1
and its dependencies that are no longer needed by Kali Linux, we can use the command below:
sudo apt-get -y autoremove libsciplot1
Remove libsciplot1 Configurations and Data
To remove libsciplot1
configuration and data from Kali Linux we can use the following command:
sudo apt-get -y purge libsciplot1
Remove libsciplot1 configuration, data, and all of its dependencies
We can use the following command to remove libsciplot1
configurations, data and all of its dependencies, we can use the following command:
sudo apt-get -y autoremove --purge libsciplot1
Dependencies
libsciplot1 have the following dependencies:
References
Summary
In this tutorial we learn how to install libsciplot1
package on Kali Linux using different package management tools: apt
, apt-get
and aptitude
.