How To Install lmfit on Fedora 34
Introduction
In this tutorial we learn how to install lmfit
on Fedora 34.
What is lmfit
C/C++ library for Levenberg-Marquardt least-squares minimization and curve fitting lmfit 8.2.2 6.fc34 x86_64 28 k lmfit-8.2.2-6.fc34.src.rpm fedora Levenberg-Marquardt least-squares minimization and curve fitting https BSD and CC-BY C/C++ library for Levenberg-Marquardt least-squares minimization and curve fitting
We can use yum
or dnf
to install lmfit
on Fedora 34. In this tutorial we discuss both methods but you only need to choose one of method to install lmfit.
Install lmfit 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 lmfit
using dnf
by running the following command:
sudo dnf -y install lmfit
Install lmfit 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 lmfit
using yum
by running the following command:
sudo yum -y install lmfit
How To Uninstall lmfit on Fedora 34
To uninstall only the lmfit
package we can use the following command:
sudo dnf remove lmfit
lmfit Package Contents on Fedora 34
/usr/lib/.build-id
/usr/lib/.build-id/98
/usr/lib/.build-id/98/59ebcf496afa2f8b227f807d2fcdaa48aaaccd
/usr/lib64/liblmfit.so.8
/usr/lib64/liblmfit.so.8.2.2
/usr/share/doc/lmfit
/usr/share/doc/lmfit/CHANGELOG
/usr/share/doc/lmfit/COPYING
/usr/lib/.build-id
/usr/lib/.build-id/b8
/usr/lib/.build-id/b8/4a9c9f6fa48f0560f83de187c358f3acd616ba
/usr/lib/liblmfit.so.8
/usr/lib/liblmfit.so.8.2.2
/usr/share/doc/lmfit
/usr/share/doc/lmfit/CHANGELOG
/usr/share/doc/lmfit/COPYING
References
Summary
In this tutorial we learn how to install lmfit
on Fedora 34 using yum and dnf.