How To Install slv2-devel on CentOS 7

In this tutorial we learn how to install slv2-devel on CentOS 7. slv2-devel is Development libraries and headers for slv2

Introduction

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

What is slv2-devel

SLV2 is a library to make the use of LV2 plugins as simple as possible for applications. It is written in standard C using the Redland RDF toolkit. The Data (RDF) and code (shared library) functionality in SLV2 is strictly separated so it is simple to control where each is used (e.g. it is possible to discover/investigate plugins and related data without loading any shared libraries, avoiding the associated risks). This package contains the headers and development libraries for SLV2.

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

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

sudo yum -y install slv2-devel

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

sudo dnf -y install slv2-devel

How To Uninstall slv2-devel on CentOS 7

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

sudo dnf remove slv2-devel

References

Summary

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