gramps command not found

In this troubleshooting guide we learn how to fix gramps command not found error message

Introduction

When you run more command in linux terminal / console, you get the following error message

gramps: command not found

or when using sudo you get the following error message

sudo: gramps: command not found

Solutions to gramps: command not found

How To Fix gramps: command not found in Ubuntu / Debian / Kali Linux / Raspbian

In Ubuntu gramps is provided by gramps package.

gramps is:

Gramps is an Open Source genealogy program written in Python, using the GTK/GNOME interface. It is an extremely flexible program fitting the needs for both the amateur genealogist and serious genealogical researcher. Gramps has the ability to import GEDCOM files exported from many proprietary genealogy programs and can produce a large number of reports in many popular formats.

To fix this problem, we can install more using the command below.

sudo apt-get -y install gramps

This command might take some time to finish depending on your machine internet connection.

You can also use apt command to install gramps.

sudo apt -y install gramps

Or if you have aptitude installed you can use the following command.

sudo aptitude install gramps

Summary

In this tutorial we learn how to fix gramps command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.