How To Install qm-dsp-devel on CentOS 7

In this tutorial we learn how to install qm-dsp-devel on CentOS 7. qm-dsp-devel is Library for DSP and Music Informatics purposes

Introduction

In this tutorial we learn how to install qm-dsp-devel on CentOS 7.

What is qm-dsp-devel

qm-dsp is a C++ library of functions for DSP and Music Informatics purposes developed at Queen Mary, University of London. It is used by the QM Vamp Plugins (q.v.) among other things. This package contains header files and static library for development with qm-dsp.

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

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

sudo yum -y install qm-dsp-devel

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

sudo dnf -y install qm-dsp-devel

How To Uninstall qm-dsp-devel on CentOS 7

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

sudo dnf remove qm-dsp-devel

References

Summary

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