XyGrib command not found
In this troubleshooting guide we learn how to fix XyGrib command not found error message
Introduction
When you run more command in linux terminal / console, you get the following error message
XyGrib: command not found
or when using sudo you get the following error message
sudo: XyGrib: command not found
Solutions to XyGrib: command not found
How To Fix XyGrib: command not found in Ubuntu / Debian / Kali Linux / Raspbian
In Ubuntu XyGrib is provided by xygrib package.
xygrib is:
This application, written with the Qt toolkit, enables:
- Visualisation of meteo data from files in GRIB Format 1
- Automatic GRIB data download
- Automatic Download from IAC (fleetcode) Data
To fix this problem, we can install more using the command below.
sudo apt-get -y install xygrib
This command might take some time to finish depending on your machine internet connection.
You can also use apt command to install xygrib.
sudo apt -y install xygrib
Or if you have aptitude installed you can use the following command.
sudo aptitude install xygrib
Summary
In this tutorial we learn how to fix XyGrib command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.