How To Install python3-img2pdf on AlmaLinux 8

In this tutorial we learn how to install python3-img2pdf in AlmaLinux 8. python3-img2pdf is Lossless images to PDF conversion library and command

Introduction

In this tutorial we learn how to install python3-img2pdf on AlmaLinux 8.

What is python3-img2pdf

Python 3 library and command line utility img2pdf for losslessly converting a bunch of image files into a PDF file. That means that the images are either inserted into the PDF as-is or they are recompressed using lossless compression. Thus, img2pdf usually runs faster and may yield smaller PDF files than an ImageMagick convert command. The img2pdf command complements the pdfimages command.

We can use yum or dnf to install python3-img2pdf on AlmaLinux 8. In this tutorial we discuss both methods but you only need to choose one of method to install python3-img2pdf.

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

sudo dnf -y install python3-img2pdf

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

sudo yum -y install python3-img2pdf

How To Uninstall python3-img2pdf on AlmaLinux 8

To uninstall only the python3-img2pdf package we can use the following command:

sudo dnf remove python3-img2pdf

References

Summary

In this tutorial we learn how to install python3-img2pdf on AlmaLinux 8 using yum and dnf.