pytesseract-没有这样的文件或目录错误

pytesseract-no such file or directory error

我正在使用 Ubuntu 14.04。我有以下代码:

import Image
import pytesseract
im = Image.open('test.png')
print pytesseract.image_to_string(im)

但我不断收到以下错误:

Traceback (most recent call last):
  File "<stdin>", line 1, in <module>
  File "/usr/lib/python2.7/dist-packages/spyderlib/widgets/externalshell/sitecustomize.py", line 540, in runfile
    execfile(filename, namespace)
  File "/home/chaitanya/pythonapp/localcopy.py", line 4, in <module>
    print pytesseract.image_to_string(im)
  File "/usr/local/lib/python2.7/dist-packages/pytesseract/pytesseract.py", line 142, in image_to_string
    config=config)
  File "/usr/local/lib/python2.7/dist-packages/pytesseract/pytesseract.py", line 75, in run_tesseract
    stderr=subprocess.PIPE)
  File "/usr/lib/python2.7/subprocess.py", line 710, in __init__
    errread, errwrite)
  File "/usr/lib/python2.7/subprocess.py", line 1327, in _execute_child
    raise child_exception
OSError: [Errno 2] No such file or directory

python 程序和图像都在同一个 location.What 可能是问题所在??

您需要安装tesseract-ocr:

sudo apt-get install tesseract-ocr

如果您使用 windows 并安装了 PIP,请转到您的项目目录并 运行:

pip install tesseract-ocr

基于我根据我的设置量身定制的@padraic cunningham 的回答。

如果您在 Linux(ubuntu 16,应该没关系)并且安装了 conda:

首先搜索您需要安装的内容:

$ anaconda search -t conda tesserocr

您将获得几个选项,您需要查看平台和构建以确定对您有意义的选项。

因为我有 python 3.6 和 linux-64 我选择了 mcs07/tesserocr

要安装:

$ conda install -c mcs07 tesserocr

就是这样。我不需要重新启动终端或任何东西。我只是继续前进。