How To Install libtickit-widgets-perl on Kali Linux

In this tutorial we learn how to install libtickit-widgets-perl on Kali Linux. libtickit-widgets-perl is collection of Tickit

Introduction

In this tutorial we learn how to install libtickit-widgets-perl on Kali Linux.

What is libtickit-widgets-perl

libtickit-widgets-perl is:

This class acts as an abstract base class for on-screen widget objects. It provides the lower-level machinery required by most or all widget types.

Objects cannot be directly constructed in this class. Instead, a subclass of this class which provides a suitable implementation of the render_to_rb and other provided methods is derived. Instances in that class are then constructed.

The core Tickit distribution only contains a couple of simple widget classes. Many more widget types are available on CPAN. Almost certainly for any widget-based program you will want to at least install the Tickit::Widgets distribution, which provides many of the basic UI types of widget.

Tickit is a high-level toolkit for creating full-screen terminal-based interactive programs. It allows programs to be written in an abstracted way, working with a tree of widget objects, to represent the layout of the interface and implement its behaviours.

There are three methods to install libtickit-widgets-perl 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 libtickit-widgets-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 libtickit-widgets-perl using apt-get by running the following command:

sudo apt-get -y install libtickit-widgets-perl

Install libtickit-widgets-perl Using apt

Update apt database with apt using the following command.

sudo apt update

After updating apt database, We can install libtickit-widgets-perl using apt by running the following command:

sudo apt -y install libtickit-widgets-perl

Install libtickit-widgets-perl 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 libtickit-widgets-perl using aptitude by running the following command:

sudo aptitude -y install libtickit-widgets-perl

How To Uninstall libtickit-widgets-perl on Kali Linux

To uninstall only the libtickit-widgets-perl package we can use the following command:

sudo apt-get remove libtickit-widgets-perl

Uninstall libtickit-widgets-perl And Its Dependencies

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

sudo apt-get -y autoremove libtickit-widgets-perl

Remove libtickit-widgets-perl Configurations and Data

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

sudo apt-get -y purge libtickit-widgets-perl

Remove libtickit-widgets-perl configuration, data, and all of its dependencies

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

sudo apt-get -y autoremove --purge libtickit-widgets-perl

Dependencies

libtickit-widgets-perl have the following dependencies:

References

Summary

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