How To Install relaxngDatatype on CentOS 7

In this tutorial we learn how to install relaxngDatatype on CentOS 7. relaxngDatatype is RELAX NG Datatype API

Introduction

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

What is relaxngDatatype

RELAX NG is a public space for test cases and other ancillary software related to the construction of the RELAX NG language and its implementations.

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

Install relaxngDatatype on CentOS 7 Using yum

Update yum database with yum using the following command.

sudo yum makecache

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

sudo yum -y install relaxngDatatype

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

sudo dnf -y install relaxngDatatype

How To Uninstall relaxngDatatype on CentOS 7

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

sudo dnf remove relaxngDatatype

References

Summary

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