我在脚本的while循环中使用tesseract。但有时(每天一次),我会收到此错误。 Tesseract已安装并正常运行,但我每天收到此消息一次。如何解决?
Traceback:
File file.py, line 169, in <module> results.append(pytesseract.image_to_string(im))
File /usr/local/lib/python2.7/dist-packages/pytesseract/pytesseract.py, line 286, in image_to_string
return run_and_get_output(image, 'txt', lang, config, nice)
File /usr/local/lib/python2.7/dist-packages/pytesseract/pytesseract.py, line 201, in run_and_get_output
raise TesseractNotFoundError()
pytesseract.pytesseract.TesseractNotFoundError: tesseract is not installed or it's not in your path
版本:
tesseract 3.04.01
leptonica-1.74.1
libgif 5.1.4 : libjpeg 6b (libjpeg-turbo 1.5.1) : libpng 1.6.28 : libtiff 4.0.8 : zlib 1.2.8 : libwebp 0.5.2 : libopenjp2 2.1.2
一旦启动脚本,tesseract就可以工作,但是突然(通常每天一次,有时是第二天),tesseract返回“ tesseract未安装或不在您的路径中”。当我再次启动脚本时,它将再次正常工作。
这是怎么了?