How To Install libghc-wreq-prof on Debian 10
Introduction
In this tutorial we learn how to install libghc-wreq-prof
on Debian 10.
What is libghc-wreq-prof
libghc-wreq-prof is:
A web client library that is designed for ease of use.
Features include:
- Simple but powerful
lens
-based API - A solid test suite, and built on reliable libraries like http-client and lens
- Session handling includes connection keep-alive and pooling, and cookie persistence
- Automatic response body decompression
- Powerful multipart form and file upload handling
- Support for JSON requests and responses, including navigation of schema-less responses
- Basic and OAuth2 bearer authentication
- Early TLS support via the tls package
This package provides a library for the Haskell programming language, compiled for profiling. See http://www.haskell.org/ for more information on Haskell.
There are three methods to install libghc-wreq-prof
on Debian 10. We can use apt-get
, apt
and aptitude
. In the following sections we will describe each method. You can choose one of them.
Install libghc-wreq-prof Using apt-get
Update apt database with apt-get
using the following command.
sudo apt-get update
After updating apt database, We can install libghc-wreq-prof
using apt-get
by running the following command:
sudo apt-get -y install libghc-wreq-prof
Install libghc-wreq-prof Using apt
Update apt database with apt
using the following command.
sudo apt update
After updating apt database, We can install libghc-wreq-prof
using apt
by running the following command:
sudo apt -y install libghc-wreq-prof
Install libghc-wreq-prof Using aptitude
If you want to follow this method, you might need to install aptitude first since aptitude is usually not installed by default on Debian. Update apt database with aptitude
using the following command.
sudo aptitude update
After updating apt database, We can install libghc-wreq-prof
using aptitude
by running the following command:
sudo aptitude -y install libghc-wreq-prof
How To Uninstall libghc-wreq-prof on Debian 10
To uninstall only the libghc-wreq-prof
package we can use the following command:
sudo apt-get remove libghc-wreq-prof
Uninstall libghc-wreq-prof And Its Dependencies
To uninstall libghc-wreq-prof
and its dependencies that are no longer needed by Debian 10, we can use the command below:
sudo apt-get -y autoremove libghc-wreq-prof
Remove libghc-wreq-prof Configurations and Data
To remove libghc-wreq-prof
configuration and data from Debian 10 we can use the following command:
sudo apt-get -y purge libghc-wreq-prof
Remove libghc-wreq-prof configuration, data, and all of its dependencies
We can use the following command to remove libghc-wreq-prof
configurations, data and all of its dependencies, we can use the following command:
sudo apt-get -y autoremove --purge libghc-wreq-prof
Dependencies
libghc-wreq-prof have the following dependencies:
- libghc-wreq-dev
- libghc-aeson-prof-1.3.1.1-5ffb4
- libghc-attoparsec-prof-0.13.2.2-25c6f
- libghc-authenticate-oauth-prof-1.6-267ca
- libghc-base-prof-4.11.1.0-5dd74
- libghc-base16-bytestring-prof-0.1.1.6-dad61
- libghc-bytestring-prof-0.10.8.2-76891
- libghc-case-insensitive-prof-1.2.0.11-d5bd7
- libghc-containers-prof-0.5.11.0-e0faa
- libghc-cryptonite-prof-0.25-9dc7c
- libghc-exceptions-prof-0.10.0-c507a
- libghc-ghc-prim-prof-0.5.2.0-0a259
- libghc-hashable-prof-1.2.7.0-68a88
- libghc-http-client-prof-0.5.13.1-eafe4
- libghc-http-client-tls-prof-0.3.5.3-8e69d
- libghc-http-types-prof-0.12.1-7f285
- libghc-lens-prof-4.16.1-2e0ff
- libghc-lens-aeson-prof-1.0.2-492ae
- libghc-memory-prof-0.14.16-a1518
- libghc-mime-types-prof-0.1.0.8-2351f
- libghc-psqueues-prof-0.2.7.0-a1687
- libghc-template-haskell-prof-2.13.0.0-87d93
- libghc-text-prof-1.2.3.1-30bbe
- libghc-time-prof-1.8.0.2-2ae9f
- libghc-time-locale-compat-prof-0.1.1.5-b7dad
- libghc-unordered-containers-prof-0.2.9.0-e9bb1
References
Summary
In this tutorial we learn how to install libghc-wreq-prof
package on Debian 10 using different package management tools: apt
, apt-get
and aptitude
.