scamp command not found
In this troubleshooting guide we learn how to fix scamp command not found error message
Introduction
When you run more command in linux terminal / console, you get the following error message
scamp: command not found
or when using sudo you get the following error message
sudo: scamp: command not found
Solutions to scamp: command not found
How To Fix scamp: command not found in Ubuntu / Debian / Kali Linux / Raspbian
In Ubuntu scamp is provided by scamp package.
scamp is:
SCAMP reads SExtractor catalogs and computes astrometric and photometric solutions for any arbitrary sequence of FITS images in a completely automatic way.
To fix this problem, we can install more using the command below.
sudo apt-get -y install scamp
This command might take some time to finish depending on your machine internet connection.
You can also use apt command to install scamp.
sudo apt -y install scamp
Or if you have aptitude installed you can use the following command.
sudo aptitude install scamp
Summary
In this tutorial we learn how to fix scamp command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.