How To Install libmpc on Rocky Linux 8
Introduction
In this tutorial we learn how to install libmpc
on Rocky Linux 8.
What is libmpc
MPC is a C library for the arithmetic of complex numbers with arbitrarily high precision and correct rounding of the result. It is built upon and follows the same principles as Mpfr.
We can use yum
or dnf
to install libmpc
on Rocky Linux 8. In this tutorial we discuss both methods but you only need to choose one of method to install libmpc.
Install libmpc on Rocky Linux 8 Using dnf
Update yum database with dnf
using the following command.
sudo dnf makecache --refresh
After updating yum database, We can install libmpc
using dnf
by running the following command:
sudo dnf -y install libmpc
Install libmpc on Rocky Linux 8 Using yum
Update yum database with yum
using the following command.
sudo yum makecache --refresh
After updating yum database, We can install libmpc
using yum
by running the following command:
sudo yum -y install libmpc
How To Uninstall libmpc on Rocky Linux 8
To uninstall only the libmpc
package we can use the following command:
sudo dnf remove libmpc
libmpc Package Contents on Rocky Linux 8
/usr/lib/.build-id
/usr/lib/.build-id/d7
/usr/lib/.build-id/d7/bc1b61b785df63ea1933eccf6fb621314a179b
/usr/lib/libmpc.so.3
/usr/lib/libmpc.so.3.1.0
/usr/share/doc/libmpc
/usr/share/doc/libmpc/NEWS
/usr/share/doc/libmpc/README
/usr/share/licenses/libmpc
/usr/share/licenses/libmpc/COPYING.LESSER
/usr/lib/.build-id
/usr/lib/.build-id/e6
/usr/lib/.build-id/e6/5fd8f7e506ce69561846ece386876bdd421bdd
/usr/lib64/libmpc.so.3
/usr/lib64/libmpc.so.3.1.0
/usr/share/doc/libmpc
/usr/share/doc/libmpc/NEWS
/usr/share/doc/libmpc/README
/usr/share/licenses/libmpc
/usr/share/licenses/libmpc/COPYING.LESSER
References
Summary
In this tutorial we learn how to install libmpc
on Rocky Linux 8 using yum and dnf.