How To Install python3-img2pdf on Rocky Linux 8
Introduction
In this tutorial we learn how to install python3-img2pdf on Rocky Linux 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 Rocky Linux 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 Rocky Linux 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 Rocky Linux 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 Rocky Linux 8
To uninstall only the python3-img2pdf package we can use the following command:
sudo dnf remove python3-img2pdf
python3-img2pdf Package Contents on Rocky Linux 8
/usr/bin/img2pdf
/usr/bin/img2pdf-gui
/usr/lib/python3.6/site-packages/__pycache__/img2pdf.cpython-36.opt-1.pyc
/usr/lib/python3.6/site-packages/__pycache__/img2pdf.cpython-36.pyc
/usr/lib/python3.6/site-packages/__pycache__/jp2.cpython-36.opt-1.pyc
/usr/lib/python3.6/site-packages/__pycache__/jp2.cpython-36.pyc
/usr/lib/python3.6/site-packages/img2pdf-0.4.0-py3.6.egg-info
/usr/lib/python3.6/site-packages/img2pdf-0.4.0-py3.6.egg-info/PKG-INFO
/usr/lib/python3.6/site-packages/img2pdf-0.4.0-py3.6.egg-info/SOURCES.txt
/usr/lib/python3.6/site-packages/img2pdf-0.4.0-py3.6.egg-info/dependency_links.txt
/usr/lib/python3.6/site-packages/img2pdf-0.4.0-py3.6.egg-info/entry_points.txt
/usr/lib/python3.6/site-packages/img2pdf-0.4.0-py3.6.egg-info/pbr.json
/usr/lib/python3.6/site-packages/img2pdf-0.4.0-py3.6.egg-info/requires.txt
/usr/lib/python3.6/site-packages/img2pdf-0.4.0-py3.6.egg-info/top_level.txt
/usr/lib/python3.6/site-packages/img2pdf-0.4.0-py3.6.egg-info/zip-safe
/usr/lib/python3.6/site-packages/img2pdf.py
/usr/lib/python3.6/site-packages/jp2.py
/usr/share/doc/python3-img2pdf
/usr/share/doc/python3-img2pdf/README.md
References
Summary
In this tutorial we learn how to install python3-img2pdf on Rocky Linux 8 using yum and dnf.