importterror:导入pdftotext时DLL加载失败:指定的模块无法找到



我安装了已安装的pdftotext模块

  1. conda install -c conda-forge poppler

  2. pip install pdftotext(我也尝试过pip install pdftotext==2.1.5),但当我尝试导入它时,它仍然会触发一个错误,尽管安装成功:

    import pdftotext

  3. 错误:

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 update conda .

然后我重做同样的过程

  1. conda install -c conda-forge poppler
  2. pip install pdftotext

在这3步之后,我成功导入pdftotext。我希望它对你也有用。

相关内容

  • 没有找到相关文章

最新更新