How To Install gnome-recipes on Ubuntu 18.04

In this tutorial we learn how to install gnome-recipes on Ubuntu 18.04. gnome-recipes is Recipe application for GNOME

Introduction

In this tutorial we learn how to install gnome-recipes on Ubuntu 18.04.

What is gnome-recipes

gnome-recipes is:

GNOME Recipes is an easy-to-use application that will help you to discover what to cook for today, tomorrow, the rest of the week, and your special occasions.

GNOME Recipes comes with a collection of recipes that have been collected by GNOME contributors from all over the world. It also lets you store your own recipes, and share them with your friends.

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

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

sudo apt-get update

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

sudo apt-get -y install gnome-recipes

Install gnome-recipes Using apt

Update apt database with apt using the following command.

sudo apt update

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

sudo apt -y install gnome-recipes

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

sudo aptitude -y install gnome-recipes

How To Uninstall gnome-recipes on Ubuntu 18.04

To uninstall only the gnome-recipes package we can use the following command:

sudo apt-get remove gnome-recipes

Uninstall gnome-recipes And Its Dependencies

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

sudo apt-get -y autoremove gnome-recipes

Remove gnome-recipes Configurations and Data

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

sudo apt-get -y purge gnome-recipes

Remove gnome-recipes configuration, data, and all of its dependencies

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

sudo apt-get -y autoremove --purge gnome-recipes

References

Summary

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