How To Install gconjugue on Ubuntu 22.04

In this tutorial we learn how to install gconjugue on Ubuntu 22.04. gconjugue is GTK+ program to conjugate Brazilian verbs

Introduction

In this tutorial we learn how to install gconjugue on Ubuntu 22.04.

What is gconjugue

gconjugue is:

Graphical program to conjugate Portuguese verbs as spoken in Brazil.

If the entered expression is not a verb, GConjugue tries to find it among the conjugated forms of known verbs. It also has the option of conjugating verbs as ordinary Brazilians do. In fact, Brazilians of different regions deviate from the normative grammar in different ways, but the conjugation displayed will already help foreigners to grasp what Brazilians are saying.

This program is a graphical interface. Alternatively, you can use conjugar, the text only version for gconjugue.

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

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

sudo apt-get update

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

sudo apt-get -y install gconjugue

Install gconjugue Using apt

Update apt database with apt using the following command.

sudo apt update

After updating apt database, We can install gconjugue using apt by running the following command:

sudo apt -y install gconjugue

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

sudo aptitude -y install gconjugue

How To Uninstall gconjugue on Ubuntu 22.04

To uninstall only the gconjugue package we can use the following command:

sudo apt-get remove gconjugue

Uninstall gconjugue And Its Dependencies

To uninstall gconjugue and its dependencies that are no longer needed by Ubuntu 22.04, we can use the command below:

sudo apt-get -y autoremove gconjugue

Remove gconjugue Configurations and Data

To remove gconjugue configuration and data from Ubuntu 22.04 we can use the following command:

sudo apt-get -y purge gconjugue

Remove gconjugue configuration, data, and all of its dependencies

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

sudo apt-get -y autoremove --purge gconjugue

References

Summary

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