1

我在我的 linux 系统上安装 python-tesseract 时遇到问题。我一直在使用本教程: http ://delimitry.blogspot.be/2014/10/installing-tesseract-for-python-on.html

我得到的错误是:

 File does not exist:['/usr/include/tesseract/capi.h', '/usr/local/include/tesseract/capi.h', '/opt/include/tesseract/capi.h', '/opt/local/include/tesseract/capi.h']
root@opencv:/home/philipp/python-tesseract#

在按顺序执行其余说明后运行python setup.py clean时。/python-tesseract

在这个系统上运行 linux 3.2.0-4-amd64。

Whereis tesseract-ocr返回:

/usr/share/tesseract-ocr

Whereis leptonica返回:

/usr/include/leptonica

Whereis tesseract返回:

tesseract: /usr/bin/tesseract /usr/bin/X11/tesseract /usr/include/tesseract/ /usr/share/man/man1/tesseract.1.gz

我还尝试运行其他一些教程/指南来安装 python-tesseract,它们返回了其他错误,例如缺少 libleptonica 然后缺少 libc6,但我没有对这些进行过多调查。只是想看看是否有任何其他指南立即起作用。此外,当我在终端中运行 tesseract 时,它可以工作,但 import tesseract 没有。

我究竟做错了什么?我该如何解决这个问题并安装 python-tesseract?

4

1 回答 1

1

我认为这种方式对你有用:

1- 从这里下载 python-tesseract_0.9-0.5ubuntu3_vivid_amd64.deb

2-安装gdebi-core

sudo apt-get install gdebi-core

3- 使用 gdebi 安装 python-tesseract_0.9-0.5ubuntu3_vivid_amd64.deb

sudo gdebi python-tesseract_0.9-0.5ubuntu2_i386.deb
于 2016-03-29T21:13:03.177 回答