drms command not found
Introduction
When you run more command in linux terminal / console, you get the following error message
drms: command not found
or when using sudo you get the following error message
sudo: drms: command not found
Solutions to drms: command not found
How To Fix drms: command not found in Ubuntu / Debian / Kali Linux / Raspbian
In Ubuntu drms is provided by python3-drms package.
python3-drms is:
The drms module provides an easy-to-use Python interface for accessing HMI, AIA and MDI data with Python. It uses the publicly accessible Joint Science Operations Center (JSOC) server by default, but can also be used with local NetDRMS sites.
The Helioseismic and Magnetic Imager (HMI) and the Atmospheric Imaging Assembly (AIA) are instruments aboard the Solar Dynamics Observatory (SDO) designed to study oscillations and the magnetic field at the solar surface. The Michelson Doppler Imager (MDI) is the predecessor to the current HMI and was launched aboard the Solar and Heliospheric Observatory (SOHO). HMI and MDI observe the full solar disk at 6173 Å with high resolution, while AIA is designed to study the solar corona.
To fix this problem, we can install more using the command below.
sudo apt-get -y install python3-drms
This command might take some time to finish depending on your machine internet connection.
You can also use apt command to install python3-drms.
sudo apt -y install python3-drms
Or if you have aptitude installed you can use the following command.
sudo aptitude install python3-drms
Summary
In this tutorial we learn how to fix drms command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.