amide command not found
Introduction
When you run more command in linux terminal / console, you get the following error message
amide: command not found
or when using sudo you get the following error message
sudo: amide: command not found
Solutions to amide: command not found
How To Fix amide: command not found in Ubuntu / Debian / Kali Linux / Raspbian
In Ubuntu amide is provided by amide package.
amide is:
AMIDE: (Amide’s a Medical Imaging Data Examiner) AMIDE is a tool for viewing and analyzing medical image data sets. It’s capabilities include the simultaneous handling of multiple data sets imported from a variety of file formats, image fusion, 3D region of interest drawing and analysis, volume rendering, and rigid body alignments.
Amide imports most clinical DICOM files (using the DCMTK library).
To fix this problem, we can install more using the command below.
sudo apt-get -y install amide
This command might take some time to finish depending on your machine internet connection.
You can also use apt command to install amide.
sudo apt -y install amide
Or if you have aptitude installed you can use the following command.
sudo aptitude install amide
Summary
In this tutorial we learn how to fix amide command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.