How To Install libmpfi0 on Ubuntu
Posted on April 1, 2023  (Last modified on May 20, 2023 )
3 minutes • 492 words
Introduction
In this tutorial we learn how to install libmpfi0
on Ubuntu.
What is libmpfi0
libmpfi0 is:
This package provides a C library of functions for interval arithmetic computations with arbitrary precision.
The basic principle of interval arithmetic consists in enclosing every number by an interval containing it and being representable by machine numbers: for instance it can be stored as its lower and upper endpoints and these bounds are machine numbers, or as a centre and a radius which are machine numbers.
The arithmetic operations are extended for interval operands in such a way that the exact result of the operation belongs to the computed interval.
The purpose of an arbitrary precision interval arithmetic is on the one hand to get guaranteed results, thanks to interval computation, and on the other hand to obtain accurate results, thanks to multiple precision arithmetic. The MPFI library is built upon MPFR in order to benefit from the correct roundings provided by MPFR. Further advantages of using MPFR are its portability and compliance with the IEEE 754 standard for floating-point arithmetic.
This package provides the dynamic library.
There are three methods to install libmpfi0
on Ubuntu. We can use apt-get
, apt
and aptitude
. In the following sections we will describe each method. You can choose one of them.
Install libmpfi0 Using apt-get
Update apt database with apt-get
using the following command.
sudo apt-get update
After updating apt database, We can install libmpfi0
using apt-get
by running the following command:
sudo apt-get -y install libmpfi0
Install libmpfi0 Using apt
Update apt database with apt
using the following command.
sudo apt update
After updating apt database, We can install libmpfi0
using apt
by running the following command:
sudo apt -y install libmpfi0
Install libmpfi0 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 Ubuntu. Update apt database with aptitude
using the following command.
sudo aptitude update
After updating apt database, We can install libmpfi0
using aptitude
by running the following command:
sudo aptitude -y install libmpfi0
How To Uninstall libmpfi0 on Ubuntu
To uninstall only the libmpfi0
package we can use the following command:
sudo apt-get remove libmpfi0
Uninstall libmpfi0 And Its Dependencies
To uninstall libmpfi0
and its dependencies that are no longer needed by Ubuntu, we can use the command below:
sudo apt-get -y autoremove libmpfi0
Remove libmpfi0 Configurations and Data
To remove libmpfi0
configuration and data from Ubuntu we can use the following command:
sudo apt-get -y purge libmpfi0
Remove libmpfi0 configuration, data, and all of its dependencies
We can use the following command to remove libmpfi0
configurations, data and all of its dependencies, we can use the following command:
sudo apt-get -y autoremove --purge libmpfi0
Dependencies
libmpfi0 have the following dependencies:
References
Summary
In this tutorial we learn how to install libmpfi0
package on Ubuntu using different package management tools: apt, apt-get and aptitude.