cmtk command not found
Introduction
When you run more command in linux terminal / console, you get the following error message
cmtk: command not found
or when using sudo you get the following error message
sudo: cmtk: command not found
Solutions to cmtk: command not found
How To Fix cmtk: command not found in Ubuntu / Debian / Kali Linux / Raspbian
In Ubuntu cmtk is provided by cmtk package.
cmtk is:
A software toolkit for computational morphometry of biomedical images, CMTK comprises a set of command line tools and a back-end general-purpose library for processing and I/O.
The command line tools primarily provide the following functionality: registration (affine and nonrigid; single and multi-channel; pairwise and groupwise), image correction (MR bias field estimation; interleaved image artifact correction), processing (filters; combination of segmentations via voting and STAPLE; shape-based averaging), statistics (t-tests; general linear regression).
To fix this problem, we can install more using the command below.
sudo apt-get -y install cmtk
This command might take some time to finish depending on your machine internet connection.
You can also use apt command to install cmtk.
sudo apt -y install cmtk
Or if you have aptitude installed you can use the following command.
sudo aptitude install cmtk
Summary
In this tutorial we learn how to fix cmtk command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.