doseutility command not found
Introduction
When you run more command in linux terminal / console, you get the following error message
doseutility: command not found
or when using sudo you get the following error message
sudo: doseutility: command not found
Solutions to doseutility: command not found
How To Fix doseutility: command not found in Ubuntu / Debian / Kali Linux / Raspbian
In Ubuntu doseutility is provided by pixelmed-apps package.
pixelmed-apps is:
This is a stand-alone DICOM toolkit that implements code for reading and creating DICOM data, DICOM network and file support, a database of DICOM objects, support for display of directories, images, reports and spectra, and DICOM object validation.
Provide command line applications for using pixelmed
To fix this problem, we can install more using the command below.
sudo apt-get -y install pixelmed-apps
This command might take some time to finish depending on your machine internet connection.
You can also use apt command to install pixelmed-apps.
sudo apt -y install pixelmed-apps
Or if you have aptitude installed you can use the following command.
sudo aptitude install pixelmed-apps
Summary
In this tutorial we learn how to fix doseutility command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.