gourmand command not found
In this troubleshooting guide we learn how to fix gourmand command not found error message
Introduction
When you run more command in linux terminal / console, you get the following error message
gourmand: command not found
or when using sudo you get the following error message
sudo: gourmand: command not found
Solutions to gourmand: command not found
How To Fix gourmand: command not found in Ubuntu / Debian / Kali Linux / Raspbian
In Ubuntu gourmand is provided by gourmand package.
gourmand is:
Gourmet Recipe Manager is a gtk-based application to store, organize and search recipes.
Features:
- Makes it easy to create shopping lists from recipes.
- Imports recipes from a number of sources, including MealMaster and MasterCook archives and several popular websites.
- Exports recipes as PDF files, plain text, MealMaster files, HTML web pages, and a custom XML format for exchange with other Gourmet users.
- Supports linking images with recipes.
- Can calculate nutritional information for recipes based on the ingredients.
To fix this problem, we can install more using the command below.
sudo apt-get -y install gourmand
This command might take some time to finish depending on your machine internet connection.
You can also use apt command to install gourmand.
sudo apt -y install gourmand
Or if you have aptitude installed you can use the following command.
sudo aptitude install gourmand
Summary
In this tutorial we learn how to fix gourmand command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.