How to Install and Uninstall ghc-explicit-exception.x86_64 Package on Red Hat Enterprise Linux 8 (RHEL 8)

Last updated: October 11,2024

1. Install "ghc-explicit-exception.x86_64" package

This tutorial shows how to install ghc-explicit-exception.x86_64 on Red Hat Enterprise Linux 8 (RHEL 8)

$ sudo dnf update $ sudo dnf install ghc-explicit-exception.x86_64

2. Uninstall "ghc-explicit-exception.x86_64" package

Learn how to uninstall ghc-explicit-exception.x86_64 on Red Hat Enterprise Linux 8 (RHEL 8):

$ sudo dnf remove ghc-explicit-exception.x86_64 $ sudo dnf autoremove

3. Information about the ghc-explicit-exception.x86_64 package on Red Hat Enterprise Linux 8 (RHEL 8)

Last metadata expiration check: 0:33:22 ago on Mon Feb 26 15:59:38 2024.
Available Packages
Name : ghc-explicit-exception
Version : 0.1.9.2
Release : 2.el8
Architecture : x86_64
Size : 62 k
Source : ghc-explicit-exception-0.1.9.2-2.el8.src.rpm
Repository : epel
Summary : Exceptions which are explicit in the type signature
URL : https://hackage.haskell.org/package/explicit-exception
License : BSD
Description : Synchronous and Asynchronous exceptions which are explicit in the type
: signature. The first ones are very similar to 'Either' and
: 'Control.Monad.Error.ErrorT'. The second ones are used for 'System.IO.readFile'
: and 'System.IO.hGetContents'. This package is a proposal for improved exception
: handling in Haskell. It strictly separates between handling of exceptional
: situations (file not found, invalid user input, see
: ) and (programming) errors
: (division by zero, index out of range, see
: ). Handling of the first one is
: called "exception handling", whereas handling of errors is better known as
: "debugging".