satpy_retrieve_all_aux_data command not found
Introduction
When you run more command in linux terminal / console, you get the following error message
satpy_retrieve_all_aux_data: command not found
or when using sudo you get the following error message
sudo: satpy_retrieve_all_aux_data: command not found
Solutions to satpy_retrieve_all_aux_data: command not found
How To Fix satpy_retrieve_all_aux_data: command not found in Ubuntu / Debian / Kali Linux / Raspbian
In Ubuntu satpy_retrieve_all_aux_data is provided by python3-satpy package.
python3-satpy is:
The SatPy package is a Python library for reading and manipulating meteorological remote sensing data and writing it to various image and data file formats. SatPy comes with the ability to make various RGB composites directly from satellite instrument channel data or higher level processing output. The pyresample package is used to resample data to different uniform areas or grids.
To fix this problem, we can install more using the command below.
sudo apt-get -y install python3-satpy
This command might take some time to finish depending on your machine internet connection.
You can also use apt command to install python3-satpy.
sudo apt -y install python3-satpy
Or if you have aptitude installed you can use the following command.
sudo aptitude install python3-satpy
Summary
In this tutorial we learn how to fix satpy_retrieve_all_aux_data command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.