How To Install kiss-fft-devel on CentOS 7

In this tutorial we learn how to install kiss-fft-devel on CentOS 7. kiss-fft-devel is Fast Fourier Transform library

Introduction

In this tutorial we learn how to install kiss-fft-devel on CentOS 7.

What is kiss-fft-devel

A Fast Fourier Transform based up on the principle, “Keep It Simple, Stupid”. Kiss FFT is a very small, reasonably efficient, mixed radix FFT library that can use either fixed or floating point data types. Header files and static library are provided.

We can use yum or dnf to install kiss-fft-devel on CentOS 7. In this tutorial we discuss both methods but you only need to choose one of method to install kiss-fft-devel.

Install kiss-fft-devel on CentOS 7 Using yum

Update yum database with yum using the following command.

sudo yum makecache

After updating yum database, We can install kiss-fft-devel using yum by running the following command:

sudo yum -y install kiss-fft-devel

Install kiss-fft-devel on CentOS 7 Using dnf

If you don’t have dnf installed you can install DNF on CentOS 7 first. Update yum database with dnf using the following command.

sudo dnf makecache

After updating yum database, We can install kiss-fft-devel using dnf by running the following command:

sudo dnf -y install kiss-fft-devel

How To Uninstall kiss-fft-devel on CentOS 7

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

sudo dnf remove kiss-fft-devel

References

Summary

In this tutorial we learn how to install kiss-fft-devel on CentOS 7 using yum and dnf.