Tesserocr使python崩溃

时间:2018-06-27 11:59:35

标签: python ubuntu tesseract

“ TESSEROCR” python库出现问题。 我正在使用ubuntu 16(远程连接),python 3.6,tesseract 4。

我设法使用PIPCPPFLAGS=-I/usr/local/include pip install tesserocr方法安装它。
但是问题是:
打开Python并输入以下内容后:import tesserocr python关闭,我回到终端。我试图重新安装,从源代码甚至不同版本的多个组合进行构建。

我不知道在哪里寻找。

2 个答案:

答案 0 :(得分:0)

当tesserocr与Python 3.6 / 3.7一起使用时,由于区域设置检查而导致错误,建议的解决方法是:

  //autoplay muted onloadedmetadata="this.muted = true"  

<video id="abc" autoplay muted onloadedmetadata="this.muted = true" >
  <source src="https://github.com/mediaelement/mediaelement-files/blob/master/big_buck_bunny.mp4?raw=true" type="video/mp4">
  Your browser does not support the video tag.
</video>

更多信息:https://github.com/sirfz/tesserocr/issues/137

答案 1 :(得分:0)

因此,在安装Tesserocr库以使用System Tesserocr时遇到两个问题:

  1. 我需要安装python-dev,因为TesserOCR库具有某些依赖项,这些依赖项仅在python-dev中可用。 sudo apt install python3-dev
  2. 您需要设置您使用的语言环境export LC_ALL=C

激活我的virtualenv之后,我只是做了pip install tesserocr,它就像魅力一样。