ImportError: DLL load failed while importing pdftotext: The specified module could not be found

ImportError: DLL load failed while importing pdftotext: The specified module could not be found

我安装了 pdftotext 模块作为

  1. conda install -c conda-forge poppler

  2. pip install pdftotext(我也试过pip install pdftotext==2.1.5),但是导入还是报错,安装成功:

    import pdftotext

错误:

ImportError: DLL load failed while importing pdftotext: The specified module could not be found.

IDK 还有什么可做的;因此,非常感谢您的帮助:)

我 运行 遇到了同样的问题,发现 pdftotext 没有列在 conda list 中。 ,只需 运行 pip install pdftotext 在新环境中安装 pdftotext 作为系统范围的包,而不是作为当前 conda 环境的特定包。

我通过使用以下命令将 pip 安装到我的 conda 环境中解决了这个问题:

conda install pip

之后,我 运行 pip install pdftotext==2.1.4(因为 2.1.5 版本对我不起作用)。 最后,我检查了 conda list 以验证安装。

我个人也有同样的问题。我已经通过

解决了
  1. conda 更新 conda .

然后我重做同样的程序

  1. conda 安装-c conda-forge poppler
  2. pip 安装 pdftotext

经过这 3 个步骤,我成功导入了 pdftotext。我希望它也适合你。