fitsverify command not found
Introduction
When you run more command in linux terminal / console, you get the following error message
fitsverify: command not found
or when using sudo you get the following error message
sudo: fitsverify: command not found
Solutions to fitsverify: command not found
How To Fix fitsverify: command not found in Ubuntu / Debian / Kali Linux / Raspbian
In Ubuntu fitsverify is provided by fitsverify package.
fitsverify is:
Fitsverify is a computer program that rigorously checks whether a FITS (Flexible Image Transport System) data file conforms to all the requirements defined in Version 3.0 of the FITS Standard document.
To fix this problem, we can install more using the command below.
sudo apt-get -y install fitsverify
This command might take some time to finish depending on your machine internet connection.
You can also use apt command to install fitsverify.
sudo apt -y install fitsverify
Or if you have aptitude installed you can use the following command.
sudo aptitude install fitsverify
Summary
In this tutorial we learn how to fix fitsverify command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.