How To Install gambit-c-doc on CentOS 7

In this tutorial we learn how to install gambit-c-doc on CentOS 7. gambit-c-doc is Documentation for gambit-c

Introduction

In this tutorial we learn how to install gambit-c-doc on CentOS 7.

What is gambit-c-doc

Gambit-C includes a Scheme interpreter and a Scheme compiler which can be used to build standalone executables. Because the compiler generates portable C code it is fairly easy to port to any platform with a decent C compiler. This package contains the Gambit-C user manual in HTML and PDF formats.

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

Install gambit-c-doc on CentOS 7 Using yum

Update yum database with yum using the following command.

sudo yum makecache

After updating yum database, We can install gambit-c-doc using yum by running the following command:

sudo yum -y install gambit-c-doc

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

sudo dnf -y install gambit-c-doc

How To Uninstall gambit-c-doc on CentOS 7

To uninstall only the gambit-c-doc package we can use the following command:

sudo dnf remove gambit-c-doc

References

Summary

In this tutorial we learn how to install gambit-c-doc on CentOS 7 using yum and dnf.