How To Install utf8cpp-devel on AlmaLinux 8
Introduction
In this tutorial we learn how to install utf8cpp-devel
on AlmaLinux 8.
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 AlmaLinux 8. In this tutorial we discuss both methods but you only need to choose one of method to install utf8cpp-devel.
Install utf8cpp-devel 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 utf8cpp-devel
using dnf
by running the following command:
sudo dnf -y install utf8cpp-devel
Install utf8cpp-devel 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 utf8cpp-devel
using yum
by running the following command:
sudo yum -y install utf8cpp-devel
How To Uninstall utf8cpp-devel on AlmaLinux 8
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 AlmaLinux 8 using yum and dnf.