How To Install cminpack on Fedora 34
Introduction
In this tutorial we learn how to install cminpack on Fedora 34.
What is cminpack
cminpack is an ISO C99 implementation of the FORTRAN Minpack solver package. It is fully re-entrant and thread-safe. cminpack 1.3.6 2.fc34 x86_64 51 k cminpack-1.3.6-2.fc34.src.rpm fedora Solver for nonlinear equations and nonlinear least squares problems http BSD cminpack is an ISO C99 implementation of the FORTRAN Minpack solver package. It is fully re-entrant and thread-safe.
We can use yum or dnf to install cminpack on Fedora 34. In this tutorial we discuss both methods but you only need to choose one of method to install cminpack.
Install cminpack on Fedora 34 Using dnf
Update yum database with dnf using the following command.
sudo dnf makecache --refresh
The output should look something like this:
Fedora 34 - x86_64 20 kB/s | 6.6 kB 00:00
Fedora 34 openh264 (From Cisco) - x86_64 1.4 kB/s | 989 B 00:00
Fedora Modular 34 - x86_64 68 kB/s | 6.5 kB 00:00
Fedora 34 - x86_64 - Updates 3.5 kB/s | 6.2 kB 00:01
Fedora Modular 34 - x86_64 - Updates 17 kB/s | 5.9 kB 00:00
Metadata cache created.
After updating yum database, We can install cminpack using dnf by running the following command:
sudo dnf -y install cminpack
Install cminpack on Fedora 34 Using yum
Update yum database with yum using the following command.
sudo yum makecache --refresh
The output should look something like this:
Fedora 34 - x86_64 20 kB/s | 6.6 kB 00:00
Fedora 34 openh264 (From Cisco) - x86_64 1.4 kB/s | 989 B 00:00
Fedora Modular 34 - x86_64 68 kB/s | 6.5 kB 00:00
Fedora 34 - x86_64 - Updates 3.5 kB/s | 6.2 kB 00:01
Fedora Modular 34 - x86_64 - Updates 17 kB/s | 5.9 kB 00:00
Metadata cache created.
After updating yum database, We can install cminpack using yum by running the following command:
sudo yum -y install cminpack
How To Uninstall cminpack on Fedora 34
To uninstall only the cminpack package we can use the following command:
sudo dnf remove cminpack
cminpack Package Contents on Fedora 34
/usr/lib/.build-id
/usr/lib/.build-id/93
/usr/lib/.build-id/93/ef0f87e88b2e1585fb66520a42e64466807d8e
/usr/lib64/libcminpack.so.1
/usr/lib64/libcminpack.so.1.3.6
/usr/share/doc/cminpack
/usr/share/doc/cminpack/README.md
/usr/share/licenses/cminpack
/usr/share/licenses/cminpack/CopyrightMINPACK.txt
/usr/lib/.build-id
/usr/lib/.build-id/dd
/usr/lib/.build-id/dd/71b57dd267eb0dccaf272eae4d325c6cefd892
/usr/lib/libcminpack.so.1
/usr/lib/libcminpack.so.1.3.6
/usr/share/doc/cminpack
/usr/share/doc/cminpack/README.md
/usr/share/licenses/cminpack
/usr/share/licenses/cminpack/CopyrightMINPACK.txt
References
- [cminpack website](http://devernay.free.fr/hacks/cminpack/cminpack.html http://devernay.free.fr/hacks/cminpack/cminpack.html)
Summary
In this tutorial we learn how to install cminpack on Fedora 34 using yum and dnf.