Python-World / python-mini-projects

A collection of simple python mini projects to enhance your python skills
https://python-world.github.io/python-mini-projects/#/
MIT License
14.83k stars 4.84k forks source link

ModuleNotFoundError: No module named 'img2pdf' #420

Closed Nallamachu closed 3 years ago

Nallamachu commented 3 years ago

No Module named with 'img2pdf'

Compilation issue

Compilation issue in convert_image_to_pdf.py with import img2pdf

import img2pdf ModuleNotFoundError: No module named 'img2pdf'

g-paras commented 3 years ago

img2pdf is a 3rd party python package, you need to install it before using it. Use the following command

pip install img2pdf