尽管我安装了tesseract并将其添加到Path

时间:2019-10-04 05:07:48

标签: python-3.x jupyter-notebook anaconda tesseract python-tesseract

我已经从此page安装了64位tesseract。

我还将“ C:\ Program Files \ Tesseract-OCR”添加到系统路径。我进入“系统属性”,然后进入“高级”选项卡,然后单击“环境变量...”。然后在用户和系统变量的路径中都添加了“ C:\ Program Files \ Tesseract-OCR”。  在命令提示符下,键入“ cd C:\ Program Files \ Tesseract-OCR”,然后键入“ tesseract”,然后得到以下信息:

Usage:
  tesseract --help | --help-extra | --version
  tesseract --list-langs
  tesseract imagename outputbase [options...] [configfile...]

OCR options:
  -l LANG[+LANG]        Specify language(s) used for OCR.
NOTE: These options must occur before any configfile.

Single options:
  --help                Show this help message.
  --help-extra          Show extra help for advanced users.
  --version             Show version information.
  --list-langs          List available languages for tesseract engine.

但是,当我想在anaconda python笔记本上使用它时,出现以下错误:

TesseractNotFoundError: tesseract is not installed or it's not in your path`enter code here`

1 个答案:

答案 0 :(得分:0)

据我了解,您已经在计算机上成功安装了tesseract。您只是无法在代码中使用它。
要使用安装在机器上的python代码中的tesseract,还应考虑使用 pytesseract 软件包。您可以使用软件包管理器安装pytesseract。
进一步阅读pytesseract