How to Install and Uninstall ghc-explicit-exception.x86_64 Package on CentOS Stream 8

Last updated: October 10,2024

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

Please follow the step by step instructions below to install ghc-explicit-exception.x86_64 on CentOS Stream 8

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

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

Please follow the guidance below to uninstall ghc-explicit-exception.x86_64 on CentOS Stream 8:

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

3. Information about the ghc-explicit-exception.x86_64 package on CentOS Stream 8

Last metadata expiration check: 6:21:02 ago on Sun Feb 25 03:03:59 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".