How To Install sombok on CentOS 7

In this tutorial we learn how to install sombok on CentOS 7. sombok is Unicode Text Segmentation Package

Introduction

In this tutorial we learn how to install sombok on CentOS 7.

What is sombok

Sombok library package performs Line Breaking Algorithm described in Unicode Standards Annex #14 (UAX #14). East_Asian_Width informative properties defined by Annex #11 (UAX #11) may be concerned to determine breaking positions. This package also implements “default” Grapheme Cluster segmentation described in Annex #29 (UAX #29).

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

Install sombok on CentOS 7 Using yum

Update yum database with yum using the following command.

sudo yum makecache

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

sudo yum -y install sombok

Install sombok on CentOS 7 Using dnf

If you don’t have dnf installed you can install DNF on CentOS 7 first. Update yum database with dnf using the following command.

sudo dnf makecache

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

sudo dnf -y install sombok

How To Uninstall sombok on CentOS 7

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

sudo dnf remove sombok

References

Summary

In this tutorial we learn how to install sombok on CentOS 7 using yum and dnf.