weightwatcher command not found
Introduction
When you run more command in linux terminal / console, you get the following error message
weightwatcher: command not found
or when using sudo you get the following error message
sudo: weightwatcher: command not found
Solutions to weightwatcher: command not found
How To Fix weightwatcher: command not found in Ubuntu / Debian / Kali Linux / Raspbian
In Ubuntu weightwatcher is provided by weightwatcher package.
weightwatcher is:
WeightWatcher is a program that combines weight-maps, flag-maps and polygon data in order to produce control maps which can directly be used in astronomical image-processing packages like Drizzle, Swarp or SExtractor.
Weight-thresholding and/or specific flag selections are applied by WeightWatcher through a configuration file: this alleviates other programs from such interpretation work. WeightWatcher will mostly be useful as part of an imaging survey pipeline. Its main features are:
- Processing speed: limited by the I/O performances of the machine (typically 50 Mpixel/s on a workstation),
- Ability to work with very large images (up to, say, 10^8 × 10^9 pixels on a 64 bit system),
- FITS format (including Multi-Extension) is used for input and output. Output flag-map format selection is automatic (8, 16 or 32bits),
- Up to 30 weight-maps, 30 flag-maps, and thousands of polygons can be handled simultaneously.
- Automatic rasterizing of DS9 .reg files,
- Statistics of flagged and weighted areas,
- Metadata output in XML-VOTable format.
To fix this problem, we can install more using the command below.
sudo apt-get -y install weightwatcher
This command might take some time to finish depending on your machine internet connection.
You can also use apt command to install weightwatcher.
sudo apt -y install weightwatcher
Or if you have aptitude installed you can use the following command.
sudo aptitude install weightwatcher
Summary
In this tutorial we learn how to fix weightwatcher command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.