How To Install libopenraw on CentOS 7

In this tutorial we learn how to install libopenraw on CentOS 7. libopenraw is Decode camera RAW files

Introduction

In this tutorial we learn how to install libopenraw on CentOS 7.

What is libopenraw

libopenraw is an ongoing project to provide a free software implementation for camera RAW files decoding. One of the main reason is that dcraw is not suited for easy integration into applications, and there is a need for an easy to use API to build free software digital image processing application. libopenraw is an ongoing project to provide a free software implementation for camera RAW files decoding. One of the main reason is that dcraw is not suited for easy integration into applications, and there is a need for an easy to use API to build free software digital image processing application.

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

Install libopenraw on CentOS 7 Using yum

Update yum database with yum using the following command.

sudo yum makecache

After updating yum database, We can install libopenraw using yum by running the following command:

sudo yum -y install libopenraw

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

sudo dnf -y install libopenraw

How To Uninstall libopenraw on CentOS 7

To uninstall only the libopenraw package we can use the following command:

sudo dnf remove libopenraw

References

Summary

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