How To Install teem on Fedora 34

teem is Libraries for scientific raster data processing and visualizing

Introduction

In this tutorial we learn how to install teem on Fedora 34.

What is teem

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 in volume datasets (scalar, vector, tensor, etc.) - Mite based on any quantity Gage can measure - Ten including fiber tractography methods.

We can use yum or dnf to install teem on Fedora 34. In this tutorial we discuss both methods but you only need to choose one of method to install teem.

Install teem on Fedora 34 Using dnf

Update yum database with dnf using the following command.

sudo dnf makecache --refresh

The output should look something like this:

Fedora 34 - x86_64                               20 kB/s | 6.6 kB     00:00
Fedora 34 openh264 (From Cisco) - x86_64        1.4 kB/s | 989  B     00:00
Fedora Modular 34 - x86_64                       68 kB/s | 6.5 kB     00:00
Fedora 34 - x86_64 - Updates                    3.5 kB/s | 6.2 kB     00:01
Fedora Modular 34 - x86_64 - Updates             17 kB/s | 5.9 kB     00:00
Metadata cache created.

After updating yum database, We can install teem using dnf by running the following command:

sudo dnf -y install teem

Install teem on Fedora 34 Using yum

Update yum database with yum using the following command.

sudo yum makecache --refresh

The output should look something like this:

Fedora 34 - x86_64                               20 kB/s | 6.6 kB     00:00
Fedora 34 openh264 (From Cisco) - x86_64        1.4 kB/s | 989  B     00:00
Fedora Modular 34 - x86_64                       68 kB/s | 6.5 kB     00:00
Fedora 34 - x86_64 - Updates                    3.5 kB/s | 6.2 kB     00:01
Fedora Modular 34 - x86_64 - Updates             17 kB/s | 5.9 kB     00:00
Metadata cache created.

After updating yum database, We can install teem using yum by running the following command:

sudo yum -y install teem

How To Uninstall teem on Fedora 34

To uninstall only the teem package we can use the following command:

sudo dnf remove teem

teem Package Contents on Fedora 34

/usr/bin/gprobe
/usr/bin/ilk
/usr/bin/miter
/usr/bin/mrender
/usr/bin/nrrdSanity
/usr/bin/overrgb
/usr/bin/puller
/usr/bin/tend
/usr/bin/unu
/usr/bin/vprobe
/usr/lib/.build-id
/usr/lib/.build-id/14
/usr/lib/.build-id/14/6efa3417a75e4f5d9e014d47d403acdcab0527
/usr/lib/.build-id/59
/usr/lib/.build-id/59/a5150327bc906e9b7a7eea79f28bc389d81b2d
/usr/lib/.build-id/77
/usr/lib/.build-id/77/be0333adbdab45373f6245a9ed02df68ede532
/usr/lib/.build-id/82
/usr/lib/.build-id/82/43dfff960562dfe653cc054fb02db8488a6d59
/usr/lib/.build-id/99
/usr/lib/.build-id/99/57ab137addce1445edd13fea42e251df80dfad
/usr/lib/.build-id/bf
/usr/lib/.build-id/bf/5645271204cb4fb0b6d6ac178c3a409806dbbf
/usr/lib/.build-id/c4
/usr/lib/.build-id/c4/d0be5a7837dab8424411913674bbed22837d97
/usr/lib/.build-id/cd
/usr/lib/.build-id/cd/8bc5eb88c191fec335fdb348ce7c2b5ba6c3fa
/usr/lib/.build-id/e0
/usr/lib/.build-id/e0/4ec52091ac9cff4867c6c1849abc2aa97880ff
/usr/lib/.build-id/e1
/usr/lib/.build-id/e1/e3d19dd1ae59a37329d2fb550c28fdc5b3dd50
/usr/share/doc/teem
/usr/share/doc/teem/README.txt

References

Summary

In this tutorial we learn how to install teem on Fedora 34 using yum and dnf.