How To Install pjproject on AlmaLinux 8

In this tutorial we learn how to install pjproject in AlmaLinux 8. pjproject is Libraries for building embedded/non-embedded VoIP applications

Introduction

In this tutorial we learn how to install pjproject on AlmaLinux 8.

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 AlmaLinux 8. In this tutorial we discuss both methods but you only need to choose one of method to install pjproject.

Install pjproject on AlmaLinux 8 Using dnf

Update yum database with dnf using the following command.

sudo dnf makecache --refresh

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

sudo dnf -y install pjproject

Install pjproject on AlmaLinux 8 Using yum

Update yum database with yum using the following command.

sudo yum makecache --refresh

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

sudo yum -y install pjproject

How To Uninstall pjproject on AlmaLinux 8

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 AlmaLinux 8 using yum and dnf.