How To Install slang on AlmaLinux 8

In this tutorial we learn how to install slang in AlmaLinux 8. slang is The shared library for the S-Lang extension language

Introduction

In this tutorial we learn how to install slang on AlmaLinux 8.

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.

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

Install slang on AlmaLinux 8 Using dnf

Update yum database with dnf using the following command.

sudo dnf makecache --refresh

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

sudo dnf -y install slang

Install slang on AlmaLinux 8 Using yum

Update yum database with yum using the following command.

sudo yum makecache --refresh

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

sudo yum -y install slang

How To Uninstall slang on AlmaLinux 8

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 AlmaLinux 8 using yum and dnf.