How To Install ghc-transformers on AlmaLinux 8

In this tutorial we learn how to install ghc-transformers in AlmaLinux 8. ghc-transformers is Haskell transformers library

Introduction

In this tutorial we learn how to install ghc-transformers on AlmaLinux 8.

What is ghc-transformers

This package provides the Haskell transformers library.

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

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

sudo dnf -y install ghc-transformers

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

sudo yum -y install ghc-transformers

How To Uninstall ghc-transformers on AlmaLinux 8

To uninstall only the ghc-transformers package we can use the following command:

sudo dnf remove ghc-transformers

References

Summary

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