How To Install plib on CentOS 7

In this tutorial we learn how to install plib on CentOS 7. plib is Set of portable libraries especially useful for games

Introduction

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

What is plib

This is a set of OpenSource (LGPL) libraries that will permit programmers to write games and other realtime interactive applications that are 100% portable across a wide range of hardware and operating systems. Here is what you need - it’s all free and available with LGPL’ed source code on the web. All of it works well together.

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

Install plib on CentOS 7 Using yum

Update yum database with yum using the following command.

sudo yum makecache

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

sudo yum -y install plib

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

sudo dnf -y install plib

How To Uninstall plib on CentOS 7

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

sudo dnf remove plib

References

Summary

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