How To Install pjproject on CentOS 7

In this tutorial we learn how to install pjproject on CentOS 7. pjproject is Libraries for building embedded/non-embedded VoIP applications

Introduction

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

What is pjproject

This package provides the Open Source, comprehensive, high performance, small footprint multimedia communication libraries written in C language for building embedded/non-embedded VoIP applications. It contains - PJSIP - Open Source SIP Stack - PJMEDIA - Open Source Media Stack - PJNATH - Open Source NAT Traversal Helper Library - PJLIB-UTIL - Auxiliary Library - PJLIB - Ultra Portable Base Framework Library - PJSUA2 - Object Oriented abstractions layer for PJSUA

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

Install pjproject on CentOS 7 Using yum

Update yum database with yum using the following command.

sudo yum makecache

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

sudo yum -y install pjproject

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

sudo dnf -y install pjproject

How To Uninstall pjproject on CentOS 7

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

sudo dnf remove pjproject

References

Summary

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