无法获得页数。 poppler是否已安装且位于PATH中?在Mac上

时间:2019-02-12 09:53:00

标签: python-3.x poppler

无法获取页数。 poppler是否已安装并且在PATH中?

poppler已安装...已重新安装 pdf2image已安装。...已重新安装

注意: 拥有Python版本3和2 使用3 ...作为python -V 在3上运行的代码

----- python代码

从pdf2image导入convert_from_path 页面= convert_from_path('dhl.pdf',500)

位置也正确。

文件“ /anaconda3/lib/python3.7/site-packages/pdf2image/pdf2image.py”,第186行,位于_page_count     引发PDFInfoNotInstalledError('无法获取页数。poppler是否安装在PATH中?'

PDFInfoNotInstalledError:无法获取页数。 poppler是否已安装并且在PATH中?

2 个答案:

答案 0 :(得分:0)

我有同样的问题。 pdf2image具有Poppler依赖项。

您需要执行的操作如下。

 brew install poppler

在您的Mac终端中。

答案 1 :(得分:0)

brew install poppler之后你可以试试这个:

pdf = convert_from_path('path/to/pdf')

len(pdf) # this gives the count to the number of pages in pdf