How To Install gnustep-base-doc on CentOS 7

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

Introduction

In this tutorial we learn how to install gnustep-base-doc on CentOS 7.

What is gnustep-base-doc

The GNUstep Base Library is a powerful fast library of general-purpose, non-graphical Objective C classes, inspired by the superb OpenStep API but implementing Apple and GNU additions to the API as well. It includes for example classes for unicode strings, arrays, dictionaries, sets, byte streams, typed coders, invocations, notifications, notification dispatchers, scanners, tasks, files, networking, threading, remote object messaging support (distributed objects), event loops, loadable bundles, attributed unicode strings, xml, mime, user defaults. This package includes development headers too. This package contains the documentation for gnustep-base

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

Install gnustep-base-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 gnustep-base-doc using yum by running the following command:

sudo yum -y install gnustep-base-doc

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

sudo dnf -y install gnustep-base-doc

How To Uninstall gnustep-base-doc on CentOS 7

To uninstall only the gnustep-base-doc package we can use the following command:

sudo dnf remove gnustep-base-doc

References

Summary

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