运行配置时,它会失败并显示

checking for leptonica... yes
checking for pixCreate in -llept... no
configure: error: leptonica library missing

但是我已经建立了leptonica 1.69(下载源并运行./configure && make install)

编辑

我认为configure: error: leptonica library missing有点误导,请注意,它首先说checking for leptonica... yes,然后在checking for pixCreate in -llept... no上失败。因此,也许问题不在于缺少该库,而是其他原因。

最佳答案

在阅读了thisthis线程之后,我终于设法将其编译。正确的步骤为:

./autogen.sh
export LIBLEPT_HEADERSDIR=/local/include
./configure --with-extra-libraries=/local/lib
make install

关于compilation - 配置:错误:缺少leptonica库(在MinGW上构建tesseract-ocr-3.01时),我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/12971253/

10-12 05:49