发生异常:导入 pdftotext 时 ImportError DLL 加载失败:找不到指定的模块
Exception has occurred: ImportError DLL load failed while importing pdftotext: The specified module could not be found
我是 Python 的新手,目前在导入某些库时遇到问题。
按照 link Unable to install pdftotext on Python 3.6, missing poppler
中的说明,我已经通过 pip install pdftotext
和 conda install -c conda-forge poppler
安装了 pdftotext
现在,当我尝试使用 visual studio 代码导入 pdftotext 时出现以下错误;
Exception has occurred: ImportError
DLL load failed while importing pdftotext: The specified module could not be found.
我遇到了同样的问题,奇怪的是 pdftotext 过去在我的电脑上工作得很好 运行ning windows 10,我什至不能 运行 import pdftotext
在 python shell 中(我得到了和你一样的错误),重新安装 anaconda 并没有改变任何东西
经过尝试和研究,我终于搞定了。
我运行命令在cmd上pip install pdftotext==2.1.4
我个人也有同样的问题。我已经通过
解决了
- conda 更新 conda .
然后我重做之前的步骤
- conda 安装-c conda-forge poppler
- pip 安装 pdftotext
经过这 3 个步骤,我成功导入了 pdftotext。我希望它也适合你。
我是 Python 的新手,目前在导入某些库时遇到问题。 按照 link Unable to install pdftotext on Python 3.6, missing poppler
中的说明,我已经通过pip install pdftotext
和 conda install -c conda-forge poppler
安装了 pdftotext
现在,当我尝试使用 visual studio 代码导入 pdftotext 时出现以下错误;
Exception has occurred: ImportError
DLL load failed while importing pdftotext: The specified module could not be found.
我遇到了同样的问题,奇怪的是 pdftotext 过去在我的电脑上工作得很好 运行ning windows 10,我什至不能 运行 import pdftotext
在 python shell 中(我得到了和你一样的错误),重新安装 anaconda 并没有改变任何东西
经过尝试和研究,我终于搞定了。
我运行命令在cmd上pip install pdftotext==2.1.4
我个人也有同样的问题。我已经通过
解决了- conda 更新 conda .
然后我重做之前的步骤
- conda 安装-c conda-forge poppler
- pip 安装 pdftotext
经过这 3 个步骤,我成功导入了 pdftotext。我希望它也适合你。