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

Last updated: February 04,2025

1. Install "ghc-HTTP.x86_64" package

Learn how to install ghc-HTTP.x86_64 on Red Hat Enterprise Linux 8 (RHEL 8)

$ sudo dnf update $ sudo dnf install ghc-HTTP.x86_64

2. Uninstall "ghc-HTTP.x86_64" package

Please follow the instructions below to uninstall ghc-HTTP.x86_64 on Red Hat Enterprise Linux 8 (RHEL 8):

$ sudo dnf remove ghc-HTTP.x86_64 $ sudo dnf autoremove

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

Last metadata expiration check: 1:52:49 ago on Mon Feb 26 15:59:38 2024.
Available Packages
Name : ghc-HTTP
Version : 4000.3.12
Release : 1.el8
Architecture : x86_64
Size : 197 k
Source : ghc-HTTP-4000.3.12-1.el8.src.rpm
Repository : epel
Summary : A library for client-side HTTP
URL : https://hackage.haskell.org/package/HTTP
License : BSD
Description : The HTTP package supports client-side web programming in Haskell. It lets you
: set up HTTP connections, transmitting requests and processing the responses
: coming back, all from within the comforts of Haskell. It's dependent on the
: network package to operate, but other than that, the implementation is all
: written in Haskell.
:
: A basic API for issuing single HTTP requests + receiving responses is provided.
: On top of that, a session-level abstraction is also on offer (the
: 'BrowserAction' monad); it taking care of handling the management of persistent
: connections, proxies, state (cookies) and authentication credentials required
: to handle multi-step interactions with a web server.
:
: The representation of the bytes flowing across is extensible via the use of a
: type class, letting you pick the representation of requests and responses that
: best fits your use. Some pre-packaged, common instances are provided for
: 'ByteString' and 'String'.