How To Install nickle on AlmaLinux 8

In this tutorial we learn how to install nickle in AlmaLinux 8. nickle is A programming language-based prototyping environment

Introduction

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

What is nickle

Nickle is a programming language based prototyping environment with powerful programming and scripting capabilities. Nickle supports a variety of datatypes, especially arbitrary precision numbers. The programming language vaguely resembles C. Some things in C which do not translate easily are different, some design choices have been made differently, and a very few features are simply missing. Nickle provides the functionality of UNIX bc, dc and expr in much-improved form. It is also an ideal environment for prototyping complex algorithms. Nickle’s scripting capabilities make it a nice replacement for spreadsheets in some applications, and its numeric features nicely complement the limited numeric functionality of text-oriented languages such as AWK and PERL.

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

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

sudo dnf -y install nickle

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

sudo yum -y install nickle

How To Uninstall nickle on AlmaLinux 8

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

sudo dnf remove nickle

References

Summary

In this tutorial we learn how to install nickle on AlmaLinux 8 using yum and dnf.