How To Install lmfit-devel on Rocky Linux 8

In this tutorial we learn how to install lmfit-devel on Rocky Linux 8. lmfit-devel is Development files for lmfit

Introduction

In this tutorial we learn how to install lmfit-devel on Rocky Linux 8.

What is lmfit-devel

Development files for lmfit.

We can use yum or dnf to install lmfit-devel on Rocky Linux 8. In this tutorial we discuss both methods but you only need to choose one of method to install lmfit-devel.

Install lmfit-devel 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 lmfit-devel using dnf by running the following command:

sudo dnf -y install lmfit-devel

Install lmfit-devel 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 lmfit-devel using yum by running the following command:

sudo yum -y install lmfit-devel

How To Uninstall lmfit-devel on Rocky Linux 8

To uninstall only the lmfit-devel package we can use the following command:

sudo dnf remove lmfit-devel

lmfit-devel Package Contents on Rocky Linux 8

/usr/include/lmcurve.h
/usr/include/lmmin.h
/usr/include/lmstruct.h
/usr/lib64/liblmfit.so
/usr/lib64/pkgconfig/lmfit.pc
/usr/share/doc/lmfit
/usr/share/doc/lmfit-devel
/usr/share/doc/lmfit-devel/demo
/usr/share/doc/lmfit-devel/demo/CMakeLists.txt
/usr/share/doc/lmfit-devel/demo/curve1.c
/usr/share/doc/lmfit-devel/demo/curve2.c
/usr/share/doc/lmfit-devel/demo/nonlin1.c
/usr/share/doc/lmfit-devel/demo/surface1.c
/usr/share/doc/lmfit/CHANGELOG
/usr/share/doc/lmfit/COPYING
/usr/share/doc/lmfit/html
/usr/share/doc/lmfit/html/lmcurve.html
/usr/share/doc/lmfit/html/lmfit.html
/usr/share/doc/lmfit/html/lmmin.html
/usr/share/doc/lmfit/html/lmmin2.html
/usr/share/man/man3/lmcurve.3.gz
/usr/share/man/man3/lmmin.3.gz
/usr/share/man/man3/lmmin2.3.gz
/usr/share/man/man7/lmfit.7.gz

References

Summary

In this tutorial we learn how to install lmfit-devel on Rocky Linux 8 using yum and dnf.