How To Install tk-html3 on Ubuntu 18.04

In this tutorial we learn how to install tk-html3 on Ubuntu 18.04. tk-html3 is Render HTML and CSS content with Tk

Introduction

In this tutorial we learn how to install tk-html3 on Ubuntu 18.04.

What is tk-html3

tk-html3 is:

Tkhtml3 is a Tk widget that displays content formatted according to the HTML and CSS standards. Tkhtml3 is not an end-user application, it is for Tcl programmers who wish to embed a standards-compliant HTML/CSS implementation in their applications.

This package contains the Tkhtml3 widget and the Hv3 mega-widget.

There are three methods to install tk-html3 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 tk-html3 Using apt-get

Update apt database with apt-get using the following command.

sudo apt-get update

After updating apt database, We can install tk-html3 using apt-get by running the following command:

sudo apt-get -y install tk-html3

Install tk-html3 Using apt

Update apt database with apt using the following command.

sudo apt update

After updating apt database, We can install tk-html3 using apt by running the following command:

sudo apt -y install tk-html3

Install tk-html3 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 tk-html3 using aptitude by running the following command:

sudo aptitude -y install tk-html3

How To Uninstall tk-html3 on Ubuntu 18.04

To uninstall only the tk-html3 package we can use the following command:

sudo apt-get remove tk-html3

Uninstall tk-html3 And Its Dependencies

To uninstall tk-html3 and its dependencies that are no longer needed by Ubuntu 18.04, we can use the command below:

sudo apt-get -y autoremove tk-html3

Remove tk-html3 Configurations and Data

To remove tk-html3 configuration and data from Ubuntu 18.04 we can use the following command:

sudo apt-get -y purge tk-html3

Remove tk-html3 configuration, data, and all of its dependencies

We can use the following command to remove tk-html3 configurations, data and all of its dependencies, we can use the following command:

sudo apt-get -y autoremove --purge tk-html3

References

Summary

In this tutorial we learn how to install tk-html3 package on Ubuntu 18.04 using different package management tools: apt, apt-get and aptitude.