How To Install t-digest on Fedora 36
Introduction
In this tutorial we learn how to install t-digest
on Fedora 36.
What is t-digest
A new data structure for accurate on-line accumulation of rank-based statistics eg. quantiles and trimmed means. The t-digest algorithm is also very parallel friendly making it useful in map-reduce and parallel streaming applications.
We can use yum
or dnf
to install t-digest
on Fedora 36. In this tutorial we discuss both methods but you only need to choose one of method to install t-digest.
Install t-digest on Fedora 36 Using dnf
Update yum database with dnf
using the following command.
sudo dnf makecache --refresh
After updating yum database, We can install t-digest
using dnf
by running the following command:
sudo dnf -y install t-digest
Install t-digest on Fedora 36 Using yum
Update yum database with yum
using the following command.
sudo yum makecache --refresh
After updating yum database, We can install t-digest
using yum
by running the following command:
sudo yum -y install t-digest
How To Uninstall t-digest on Fedora 36
To uninstall only the t-digest
package we can use the following command:
sudo dnf remove t-digest
t-digest Package Contents on Fedora 36
/usr/share/doc/t-digest
/usr/share/doc/t-digest/README.md
/usr/share/java/t-digest
/usr/share/java/t-digest/t-digest.jar
/usr/share/licenses/t-digest
/usr/share/licenses/t-digest/LICENSE
/usr/share/licenses/t-digest/NOTICES
/usr/share/maven-metadata/t-digest.xml
/usr/share/maven-poms/t-digest
/usr/share/maven-poms/t-digest/t-digest.pom
References
Summary
In this tutorial we learn how to install t-digest
on Fedora 36 using yum and [dnf]((/fedora/36/dnf/).