0

我尝试了许多方法来安装 Tesseract,但我似乎无法让它工作。我在 Mac 上,这是我不断收到的错误

    txt = pytesseract.image_to_string(image, lang='eng')
  File "/Users/user/anaconda/lib/python2.7/site-packages/pytesseract/pytesseract.py", line 161, in image_to_string
    config=config)
  File "/Users/user/anaconda/lib/python2.7/site-packages/pytesseract/pytesseract.py", line 94, in run_tesseract
    stderr=subprocess.PIPE)
  File "/Users/user/anaconda/lib/python2.7/subprocess.py", line 711, in __init__
    errread, errwrite)
  File "/Users/user/anaconda/lib/python2.7/subprocess.py", line 1343, in _execute_child
    raise child_exception
OSError: [Errno 2] No such file or directory

有谁知道我如何用 tesseract 解决这个问题?

4

1 回答 1

0

Anaconda 确实有conda可用的 Tesseract 包。使用以下命令安装它,然后重试。

conda install -c brown-data-science tesseract=3.05.00

如果需要最新版本Tesseract 4.00.00alpha,可以参考github上的安装说明。如果您没有Xcode或未Homebrew安装,请选中此项以安装它。

于 2017-04-09T16:06:00.963 回答