How To Install slang on CentOS 7

In this tutorial we learn how to install slang on CentOS 7. slang is The shared library for the S-Lang extension language

Introduction

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

What is slang

S-Lang is an interpreted language and a programming library. The S-Lang language was designed so that it can be easily embedded into a program to provide the program with a powerful extension language. The S-Lang library, provided in this package, provides the S-Lang extension language. S-Lang’s syntax resembles C, which makes it easy to recode S-Lang procedures in C if you need to. S-Lang is an interpreted language and a programming library. The S-Lang language was designed so that it can be easily embedded into a program to provide the program with a powerful extension language. The S-Lang library, provided in this package, provides the S-Lang extension language. S-Lang’s syntax resembles C, which makes it easy to recode S-Lang procedures in C if you need to.

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

Install slang on CentOS 7 Using yum

Update yum database with yum using the following command.

sudo yum makecache

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

sudo yum -y install slang

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

sudo dnf -y install slang

How To Uninstall slang on CentOS 7

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

sudo dnf remove slang

References

Summary

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