gavo command not found
Introduction
When you run more command in linux terminal / console, you get the following error message
gavo: command not found
or when using sudo you get the following error message
sudo: gavo: command not found
Solutions to gavo: command not found
How To Fix gavo: command not found in Ubuntu / Debian / Kali Linux / Raspbian
In Ubuntu gavo is provided by python3-gavo package.
python3-gavo is:
The Data Center Helper Suite (DaCHS) is a collection of Python modules (with some exceptions) to help you in setting up and running a VO-compliant data center. Moreover, some parts of this code are useful for client-side applications.
Currently, DaCHS supports most DAL protocols (SIAP, SCS, TAP), form-based interfaces, a publishing registry, ADQL and some other (less prominent) VO standards, and data management for various kinds of input.
To fix this problem, we can install more using the command below.
sudo apt-get -y install python3-gavo
This command might take some time to finish depending on your machine internet connection.
You can also use apt command to install python3-gavo.
sudo apt -y install python3-gavo
Or if you have aptitude installed you can use the following command.
sudo aptitude install python3-gavo
Summary
In this tutorial we learn how to fix gavo command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.