How To Install utf8cpp-devel on CentOS 7

In this tutorial we learn how to install utf8cpp-devel on CentOS 7. utf8cpp-devel is Header files for utf8cpp

Introduction

In this tutorial we learn how to install utf8cpp-devel on CentOS 7.

What is utf8cpp-devel

Header files for utf8cpp. Features include - iterating through UTF-8 encoded strings - converting between UTF-8 and UTF-16/UTF-32 - detecting invalid UTF-8 sequences This project currently only contains header files, which can be found in the utf8cpp-devel package.

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

Install utf8cpp-devel on CentOS 7 Using yum

Update yum database with yum using the following command.

sudo yum makecache

After updating yum database, We can install utf8cpp-devel using yum by running the following command:

sudo yum -y install utf8cpp-devel

Install utf8cpp-devel 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 utf8cpp-devel using dnf by running the following command:

sudo dnf -y install utf8cpp-devel

How To Uninstall utf8cpp-devel on CentOS 7

To uninstall only the utf8cpp-devel package we can use the following command:

sudo dnf remove utf8cpp-devel

References

Summary

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