teem-unu command not found

In this troubleshooting guide we learn how to fix teem-unu command not found error message

Introduction

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

teem-unu: command not found

or when using sudo you get the following error message

sudo: teem-unu: command not found

Solutions to teem-unu: command not found

How To Fix teem-unu: command not found in Ubuntu / Debian / Kali Linux / Raspbian

In Ubuntu teem-unu is provided by teem-apps package.

teem-apps is:

Teem is a coordinated group of libraries for representing, processing, and visualizing scientific raster data. Teem includes command-line tools that permit the library functions to be quickly applied to files and streams, without having to write any code. The most important and useful libraries in Teem are:

  • Nrrd (and the unu command-line tool on top of it) supports a range of operations for transforming N-dimensional raster data (resample, crop, slice, project, histogram, etc.), as well as the NRRD file format for storing arrays and their meta-information.
  • Gage: fast convolution-based measurements at arbitrary point locations in volume datasets (scalar, vector, tensor, etc.)
  • Mite: a multi-threaded ray-casting volume render with transfer functions based on any quantity Gage can measure
  • Ten: for estimating, processing, and visualizing diffusion tensor fields, including fiber tractography methods.

This package contains some simple command-line tools which provide fast and easy access to the functionality in the various libraries.

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

sudo apt-get -y install teem-apps

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

You can also use apt command to install teem-apps.

sudo apt -y install teem-apps

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

sudo aptitude install teem-apps

Summary

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