How To Install netpbm-devel on CentOS 7

In this tutorial we learn how to install netpbm-devel on CentOS 7. netpbm-devel is Development tools for programs which will use the netpbm libraries

Introduction

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

What is netpbm-devel

The netpbm-devel package contains the header files and static libraries, etc., for developing programs which can handle the various graphics file formats supported by the netpbm libraries. Install netpbm-devel if you want to develop programs for handling the graphics file formats supported by the netpbm libraries. You’ll also need to have the netpbm package installed. The netpbm-devel package contains the header files and static libraries, etc., for developing programs which can handle the various graphics file formats supported by the netpbm libraries. Install netpbm-devel if you want to develop programs for handling the graphics file formats supported by the netpbm libraries. You’ll also need to have the netpbm package installed.

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

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

sudo yum -y install netpbm-devel

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

sudo dnf -y install netpbm-devel

How To Uninstall netpbm-devel on CentOS 7

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

sudo dnf remove netpbm-devel

References

Summary

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