How To Install ghc-temporary on CentOS 7

In this tutorial we learn how to install ghc-temporary on CentOS 7. ghc-temporary is Portable temporary file and directory support

Introduction

In this tutorial we learn how to install ghc-temporary on CentOS 7.

What is ghc-temporary

The functions for creating temporary files and directories in the base library are quite limited. The unixutils package contains some good ones, but they aren’t portable to Windows. This library repackages the Cabal implementations of its own temporary file and folder functions so that you can use them without linking against Cabal or depending on it being installed.

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

Install ghc-temporary on CentOS 7 Using yum

Update yum database with yum using the following command.

sudo yum makecache

After updating yum database, We can install ghc-temporary using yum by running the following command:

sudo yum -y install ghc-temporary

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

sudo dnf -y install ghc-temporary

How To Uninstall ghc-temporary on CentOS 7

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

sudo dnf remove ghc-temporary

References

Summary

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