I am trying to convert pdf to image using pdf2image module on Google Colab. I have downloaded the latest version of poppler and also installed poppler-utils. In convert_from_path() , I mentioned the correct path to poppler's bin directory, still I'm getting FileNotFoundError and PDFInfoNotInstalled Error.
Refer to the attached Screenshot for more clarity. Screenshot of Error
For colab, try installing the below commands and try convert_from_path
Then try
pages = convert_from_path('filename', 500)
It should work.
I recommend this answer as it worked for me best than other answers. If it doesn't work even after installing the library, then try restarting the kernel and run the code convert_from_path. It should work now.