How To Install gamera-doc on Ubuntu 18.04

In this tutorial we learn how to install gamera-doc on Ubuntu 18.04. gamera-doc is documentation for the Gamera framework

Introduction

In this tutorial we learn how to install gamera-doc on Ubuntu 18.04.

What is gamera-doc

gamera-doc is:

The Gamera framework is a Python library for building custom applications for document analysis and recognition.

This package contains documentation for Gamera.

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

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

sudo apt-get update

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

sudo apt-get -y install gamera-doc

Install gamera-doc Using apt

Update apt database with apt using the following command.

sudo apt update

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

sudo apt -y install gamera-doc

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

sudo aptitude -y install gamera-doc

How To Uninstall gamera-doc on Ubuntu 18.04

To uninstall only the gamera-doc package we can use the following command:

sudo apt-get remove gamera-doc

Uninstall gamera-doc And Its Dependencies

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

sudo apt-get -y autoremove gamera-doc

Remove gamera-doc Configurations and Data

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

sudo apt-get -y purge gamera-doc

Remove gamera-doc configuration, data, and all of its dependencies

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

sudo apt-get -y autoremove --purge gamera-doc

References

Summary

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