How To Install libtickit-widget-tabbed-perl on Ubuntu 22.04

In this tutorial we learn how to install libtickit-widget-tabbed-perl on Ubuntu 22.04. libtickit-widget-tabbed-perl is basic tabbed window support for Tickit

Introduction

In this tutorial we learn how to install libtickit-widget-tabbed-perl on Ubuntu 22.04.

What is libtickit-widget-tabbed-perl

libtickit-widget-tabbed-perl is:

Tickit::Widget::Tabbed provides a container that operates as a tabbed window.

Subclass of Tickit::ContainerWidget.

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-widget-tabbed-perl on Ubuntu 22.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 libtickit-widget-tabbed-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-widget-tabbed-perl using apt-get by running the following command:

sudo apt-get -y install libtickit-widget-tabbed-perl

Install libtickit-widget-tabbed-perl Using apt

Update apt database with apt using the following command.

sudo apt update

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

sudo apt -y install libtickit-widget-tabbed-perl

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

sudo aptitude -y install libtickit-widget-tabbed-perl

How To Uninstall libtickit-widget-tabbed-perl on Ubuntu 22.04

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

sudo apt-get remove libtickit-widget-tabbed-perl

Uninstall libtickit-widget-tabbed-perl And Its Dependencies

To uninstall libtickit-widget-tabbed-perl and its dependencies that are no longer needed by Ubuntu 22.04, we can use the command below:

sudo apt-get -y autoremove libtickit-widget-tabbed-perl

Remove libtickit-widget-tabbed-perl Configurations and Data

To remove libtickit-widget-tabbed-perl configuration and data from Ubuntu 22.04 we can use the following command:

sudo apt-get -y purge libtickit-widget-tabbed-perl

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

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

sudo apt-get -y autoremove --purge libtickit-widget-tabbed-perl

References

Summary

In this tutorial we learn how to install libtickit-widget-tabbed-perl package on Ubuntu 22.04 using different package management tools: apt, apt-get and aptitude.