How To Install vte-devel on CentOS 7

In this tutorial we learn how to install vte-devel on CentOS 7. vte-devel is Files needed for developing applications which use vte

Introduction

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

What is vte-devel

The vte-devel package includes the header files and developer docs for the vte package. Install vte-devel if you want to develop programs which will use vte.

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

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

sudo yum -y install vte-devel

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

sudo dnf -y install vte-devel

How To Uninstall vte-devel on CentOS 7

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

sudo dnf remove vte-devel

References

Summary

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