How To Install compat-guile18-devel on CentOS 7

In this tutorial we learn how to install compat-guile18-devel on CentOS 7. compat-guile18-devel is Libraries and header files for the GUILE extensibility library

Introduction

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

What is compat-guile18-devel

The compat-guile18-devel package includes the libraries, header files, etc., that you’ll need to develop applications that are linked with the GUILE extensibility library. You need to install the compat-guile18-devel package if you want to develop applications that will be linked to GUILE. You’ll also need to install the compat-guile18 package.

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

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

sudo yum -y install compat-guile18-devel

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

sudo dnf -y install compat-guile18-devel

How To Uninstall compat-guile18-devel on CentOS 7

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

sudo dnf remove compat-guile18-devel

References

Summary

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