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

时间:2015-02-26 11:43:26

标签: python python-2.7 ubuntu-14.04

我使用的是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程序和图像都在同一个位置。可能是什么问题??

3 个答案:

答案 0 :(得分:61)

您需要安装tesseract-ocr

sudo apt-get install tesseract-ocr

答案 1 :(得分:3)

如果你在Windows上安装了PIP,请转到项目目录并运行:

pip install tesseract-ocr

答案 2 :(得分:3)

基于@padraic cunningham的回答,我根据自己的设定进行了调整。

如果您使用的是Linux(ubuntu 16,无所谓)并且安装了conda:

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

$ anaconda search -t conda tesserocr

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

由于我有python 3.6和linux-64,我选择了mcs07 / tesserocr

安装:

$ conda install -c mcs07 tesserocr

那就是它。我不需要重启终端或任何东西。我只是继续前进