How To Install libterm-sk-perl on Ubuntu 18.04
Introduction
In this tutorial we learn how to install libterm-sk-perl on Ubuntu 18.04.
What is libterm-sk-perl
libterm-sk-perl is:
Term::Sk is a class to implement a progress indicator (“Sk” is a short form for “Show Key”). This is used to provide immediate feedback for long running processes.
There are three methods to install libterm-sk-perl on Ubuntu 18.04. We can use apt-get, apt and aptitude. In the following sections we will describe each method. You can choose one of them.
Install libterm-sk-perl Using apt-get
Update apt database with apt-get using the following command.
sudo apt-get update
After updating apt database, We can install libterm-sk-perl using apt-get by running the following command:
sudo apt-get -y install libterm-sk-perl
Install libterm-sk-perl Using apt
Update apt database with apt using the following command.
sudo apt update
After updating apt database, We can install libterm-sk-perl using apt by running the following command:
sudo apt -y install libterm-sk-perl
Install libterm-sk-perl 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 Ubuntu. Update apt database with aptitude using the following command.
sudo aptitude update
After updating apt database, We can install libterm-sk-perl using aptitude by running the following command:
sudo aptitude -y install libterm-sk-perl
How To Uninstall libterm-sk-perl on Ubuntu 18.04
To uninstall only the libterm-sk-perl package we can use the following command:
sudo apt-get remove libterm-sk-perl
Uninstall libterm-sk-perl And Its Dependencies
To uninstall libterm-sk-perl and its dependencies that are no longer needed by Ubuntu 18.04, we can use the command below:
sudo apt-get -y autoremove libterm-sk-perl
Remove libterm-sk-perl Configurations and Data
To remove libterm-sk-perl configuration and data from Ubuntu 18.04 we can use the following command:
sudo apt-get -y purge libterm-sk-perl
Remove libterm-sk-perl configuration, data, and all of its dependencies
We can use the following command to remove libterm-sk-perl configurations, data and all of its dependencies, we can use the following command:
sudo apt-get -y autoremove --purge libterm-sk-perl
References
Summary
In this tutorial we learn how to install libterm-sk-perl package on Ubuntu 18.04 using different package management tools: apt, apt-get and aptitude.