6

Macで次のコードを実行しようとしています。

import Image
enter code here`import pytesseract
im = Image.open('test.png')
print pytesseract.image_to_string(im)

ここからの質問に続いて: pytesseract-no such file or directory error I need to install tesseract-ocr

しかし、pip install tesseract-ocr を実行しようとすると、次のエラーが発生します。

creating build/temp.macosx-10.5-x86_64-2.7
gcc -fno-strict-aliasing -I//anaconda/include -arch x86_64 -DNDEBUG -g
-fwrapv -O3 -Wall -Wstrict-prototypes -I//anaconda/include/python2.7 -c
tesseract_ocr.cpp -o build/temp.macosx-10.5-x86_64-2.7/tesseract_ocr.o
tesseract_ocr.cpp:264:10: 
fatal error: 'leptonica/allheaders.h' file not found #include "leptonica/allheaders.h"
     ^
1 error generated.
error: command 'gcc' failed with exit status 1

どうすればいいのかわからない。

4

4 に答える 4

12

システムにインストールする必要がありlibleptonica-devますtesseract-ocr-dev

sudo apt install libleptonica-dev
sudo apt install tesseract-ocr-dev
于 2016-09-22T09:58:42.677 に答える