How To Install gtk-3-examples on Ubuntu 20.04

In this tutorial we learn how to install gtk-3-examples on Ubuntu 20.04. gtk-3-examples is example files for GTK 3 example files for GTK 3

Introduction

In this tutorial we learn how to install gtk-3-examples on Ubuntu 20.04.

What is gtk-3-examples

gtk-3-examples is:

GTK is a multi-platform toolkit for creating graphical user interfaces. Offering a complete set of widgets, GTK is suitable for projects ranging from small one-off tools to complete application suites.

This package contains the example files and a demonstration program for GTK3. It also contains the installed tests.

Package: gtk-3-examples Architecture: amd64 Version: 3.24.18-1ubuntu1 Priority: extra Section: x11 Source: gtk+3.0 Origin: Ubuntu Maintainer: Ubuntu Developers [email protected] Original-Maintainer: Debian GNOME Maintainers [email protected] Bugs: https://bugs.launchpad.net/ubuntu/+filebug Installed-Size: 14980 Depends: dconf-gsettings-backend | gsettings-backend, libatk1.0-0 (>= 2.15.1), libc6 (>= 2.4), libcairo2 (>= 1.14.0), libepoxy0 (>= 1.0), libgdk-pixbuf2.0-0 (>= 2.40.0), libglib2.0-0 (>= 2.59.0), libgtk-3-0 (= 3.24.18-1ubuntu1), libharfbuzz0b (>= 0.9.9), libpango-1.0-0 (>= 1.41.0), libpangocairo-1.0-0 (>= 1.41.0), libpangoft2-1.0-0 (>= 1.41.0), libx11-6 Filename: pool/main/g/gtk+3.0/gtk-3-examples_3.24.18-1ubuntu1_amd64.deb Size: 1660932 MD5sum: df6cf619f89743f851fffd7f22b1c12a SHA1: b5f92fa1d41c87df35a905958ce0ae2b397d0d83 SHA256: ec5ed4f90c2c43ccec9a95a34857a450cc8b71fb25d7766cd835702550ce5c7b Homepage: https://www.gtk.org/ Description-en: example files for GTK 3 GTK is a multi-platform toolkit for creating graphical user interfaces. Offering a complete set of widgets, GTK is suitable for projects ranging from small one-off tools to complete application suites.

This package contains the example files and a demonstration program for GTK3. It also contains the installed tests.

There are three methods to install gtk-3-examples on Ubuntu 20.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 gtk-3-examples Using apt-get

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

sudo apt-get update

After updating apt database, We can install gtk-3-examples using apt-get by running the following command:

sudo apt-get -y install gtk-3-examples

Install gtk-3-examples Using apt

Update apt database with apt using the following command.

sudo apt update

After updating apt database, We can install gtk-3-examples using apt by running the following command:

sudo apt -y install gtk-3-examples

Install gtk-3-examples 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 gtk-3-examples using aptitude by running the following command:

sudo aptitude -y install gtk-3-examples

How To Uninstall gtk-3-examples on Ubuntu 20.04

To uninstall only the gtk-3-examples package we can use the following command:

sudo apt-get remove gtk-3-examples

Uninstall gtk-3-examples And Its Dependencies

To uninstall gtk-3-examples and its dependencies that are no longer needed by Ubuntu 20.04, we can use the command below:

sudo apt-get -y autoremove gtk-3-examples

Remove gtk-3-examples Configurations and Data

To remove gtk-3-examples configuration and data from Ubuntu 20.04 we can use the following command:

sudo apt-get -y purge gtk-3-examples

Remove gtk-3-examples configuration, data, and all of its dependencies

We can use the following command to remove gtk-3-examples configurations, data and all of its dependencies, we can use the following command:

sudo apt-get -y autoremove --purge gtk-3-examples

References

Summary

In this tutorial we learn how to install gtk-3-examples package on Ubuntu 20.04 using different package management tools: apt, apt-get and aptitude.