How To Install fftw-devel on Rocky Linux 8
Introduction
In this tutorial we learn how to install fftw-devel
on Rocky Linux 8.
What is fftw-devel
FFTW is a C subroutine library for computing the Discrete Fourier Transform (DFT) in one or more dimensions, of both real and complex data, and of arbitrary input size. This package contains header files and development libraries needed to develop programs using the FFTW fast Fourier transform library.
We can use yum
or dnf
to install fftw-devel
on Rocky Linux 8. In this tutorial we discuss both methods but you only need to choose one of method to install fftw-devel.
Install fftw-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 fftw-devel
using dnf
by running the following command:
sudo dnf -y install fftw-devel
Install fftw-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 fftw-devel
using yum
by running the following command:
sudo yum -y install fftw-devel
How To Uninstall fftw-devel on Rocky Linux 8
To uninstall only the fftw-devel
package we can use the following command:
sudo dnf remove fftw-devel
fftw-devel Package Contents on Rocky Linux 8
/usr/include/fftw3.f
/usr/include/fftw3.f03
/usr/include/fftw3.h
/usr/include/fftw3l.f03
/usr/include/fftw3q.f03
/usr/lib/libfftw3.so
/usr/lib/libfftw3_omp.so
/usr/lib/libfftw3_threads.so
/usr/lib/libfftw3f.so
/usr/lib/libfftw3f_omp.so
/usr/lib/libfftw3f_threads.so
/usr/lib/libfftw3l.so
/usr/lib/libfftw3l_omp.so
/usr/lib/libfftw3l_threads.so
/usr/lib/libfftw3q.so
/usr/lib/libfftw3q_omp.so
/usr/lib/libfftw3q_threads.so
/usr/lib/pkgconfig/fftw3.pc
/usr/lib/pkgconfig/fftw3f.pc
/usr/lib/pkgconfig/fftw3l.pc
/usr/lib/pkgconfig/fftw3q.pc
/usr/share/doc/fftw-devel
/usr/share/doc/fftw-devel/fftw-faq.html
/usr/share/doc/fftw-devel/fftw-faq.html/index.html
/usr/share/doc/fftw-devel/fftw-faq.html/section1.html
/usr/share/doc/fftw-devel/fftw-faq.html/section2.html
/usr/share/doc/fftw-devel/fftw-faq.html/section3.html
/usr/share/doc/fftw-devel/fftw-faq.html/section4.html
/usr/share/doc/fftw-devel/fftw-faq.html/section5.html
/usr/share/info/fftw3.info-1.gz
/usr/share/info/fftw3.info-2.gz
/usr/share/info/fftw3.info.gz
/usr/include/fftw3.f
/usr/include/fftw3.f03
/usr/include/fftw3.h
/usr/include/fftw3l.f03
/usr/include/fftw3q.f03
/usr/lib64/libfftw3.so
/usr/lib64/libfftw3_omp.so
/usr/lib64/libfftw3_threads.so
/usr/lib64/libfftw3f.so
/usr/lib64/libfftw3f_omp.so
/usr/lib64/libfftw3f_threads.so
/usr/lib64/libfftw3l.so
/usr/lib64/libfftw3l_omp.so
/usr/lib64/libfftw3l_threads.so
/usr/lib64/libfftw3q.so
/usr/lib64/libfftw3q_omp.so
/usr/lib64/libfftw3q_threads.so
/usr/lib64/pkgconfig/fftw3.pc
/usr/lib64/pkgconfig/fftw3f.pc
/usr/lib64/pkgconfig/fftw3l.pc
/usr/lib64/pkgconfig/fftw3q.pc
/usr/share/doc/fftw-devel
/usr/share/doc/fftw-devel/fftw-faq.html
/usr/share/doc/fftw-devel/fftw-faq.html/index.html
/usr/share/doc/fftw-devel/fftw-faq.html/section1.html
/usr/share/doc/fftw-devel/fftw-faq.html/section2.html
/usr/share/doc/fftw-devel/fftw-faq.html/section3.html
/usr/share/doc/fftw-devel/fftw-faq.html/section4.html
/usr/share/doc/fftw-devel/fftw-faq.html/section5.html
/usr/share/info/fftw3.info-1.gz
/usr/share/info/fftw3.info-2.gz
/usr/share/info/fftw3.info.gz
References
Summary
In this tutorial we learn how to install fftw-devel
on Rocky Linux 8 using yum and dnf.