How To Install zinnia on AlmaLinux 8

In this tutorial we learn how to install zinnia in AlmaLinux 8. zinnia is Online handwriting recognition system with machine learning

Introduction

In this tutorial we learn how to install zinnia on AlmaLinux 8.

What is zinnia

Zinnia provides a simple, customizable, and portable dynamic OCR system for hand-written input, based on Support Vector Machines. Zinnia simply receives user pen strokes as coordinate data and outputs the best matching characters sorted by SVM confidence. To maintain portability, it has no rendering functionality. In addition to recognition, Zinnia provides a training module capable of creating highly efficient handwriting recognition models. This package contains the shared libraries.

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

Install zinnia on AlmaLinux 8 Using dnf

Update yum database with dnf using the following command.

sudo dnf makecache --refresh

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

sudo dnf -y install zinnia

Install zinnia on AlmaLinux 8 Using yum

Update yum database with yum using the following command.

sudo yum makecache --refresh

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

sudo yum -y install zinnia

How To Uninstall zinnia on AlmaLinux 8

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

sudo dnf remove zinnia

References

Summary

In this tutorial we learn how to install zinnia on AlmaLinux 8 using yum and dnf.