med-imaging command not found

In this troubleshooting guide we learn how to fix med-imaging command not found error message

Introduction

When you run more command in linux terminal / console, you get the following error message

med-imaging: command not found

or when using sudo you get the following error message

sudo: med-imaging: command not found

Solutions to med-imaging: command not found

How To Fix med-imaging: command not found in Ubuntu / Debian / Kali Linux / Raspbian

In Ubuntu med-imaging is provided by med-imaging package.

med-imaging is:

This metapackage will install Debian packages which might be useful in medical image processing and visualization.

On one hand, it installs several packages supporting various image file formats and image management, like DICOM (Digital Imaging and Communications in Medicine) which is the de-facto standard for medical image management, and NIFTI. On the other hand, it provides a variety of software packages that can be used for visualization and for image processing

  • either from a graphical user interface, the command line, or implemented in workflows.

To fix this problem, we can install more using the command below.

sudo apt-get -y install med-imaging

This command might take some time to finish depending on your machine internet connection.

You can also use apt command to install med-imaging.

sudo apt -y install med-imaging

Or if you have aptitude installed you can use the following command.

sudo aptitude install med-imaging

Summary

In this tutorial we learn how to fix med-imaging command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.