How To Install ghcid on Fedora 36

In this tutorial we learn how to install ghcid in Fedora 36. ghcid is GHCi based bare bones IDE

Introduction

In this tutorial we learn how to install ghcid on Fedora 36.

What is ghcid

Either “GHCi as a daemon” or “GHC + a bit of an IDE”. A very simple Haskell development tool which shows you the errors in your project and updates them whenever you save. Run ‘ghcid –command=ghci’, where ‘–command’ is the command to start GHCi on your project (defaults to ‘ghci’ if you have a ‘.ghci’ file, or else to ‘cabal repl’).

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

Install ghcid on Fedora 36 Using dnf

Update yum database with dnf using the following command.

sudo dnf makecache --refresh

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

sudo dnf -y install ghcid

Install ghcid on Fedora 36 Using yum

Update yum database with yum using the following command.

sudo yum makecache --refresh

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

sudo yum -y install ghcid

How To Uninstall ghcid on Fedora 36

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

sudo dnf remove ghcid

ghcid Package Contents on Fedora 36

/usr/bin/ghcid
/usr/lib/.build-id
/usr/lib/.build-id/1c
/usr/lib/.build-id/1c/fdc1e6552618629ec93c30d71ea8b8f9530f47
/usr/share/doc/ghcid
/usr/share/doc/ghcid/CHANGES.txt
/usr/share/doc/ghcid/README.md
/usr/share/licenses/ghcid
/usr/share/licenses/ghcid/LICENSE

References

Summary

In this tutorial we learn how to install ghcid on Fedora 36 using yum and [dnf]((/fedora/36/dnf/).