Error When installing Tesseract 3.05 in Centos7 "error: Leptonica 1.74 or higher is required. Try to install libleptonica-dev package"
Error When installing Tesseract 3.05 in Centos7 "error: Leptonica 1.74 or higher is required. Try to install libleptonica-dev package"
我们最初在 centos 7 中安装了 tesseract 3.04,并且知道切换到 tesseract 3.05。我们已经卸载了旧版本,并且已经安装了从 leptonica 主页下载的 leptonica-1.75.3。
但是,当我们安装 tesseract 3.05 时,出现以下错误
检查 LEPTONICA... 没有
配置:错误:需要 Leptonica 1.74 或更高版本。尝试安装 libleptonica-dev 包。
当运行 ./configure in console in tesseract-3.05.01 folder.
需要知道问题出在哪里。
configure
脚本使用 pkg-config
查看是否安装了 leptonica
库(并具有所需的版本)。
从源代码编译并安装 leptonica 后,您必须手动告诉 pkg-config
在哪里可以找到随 leptonica 安装的 lept.pc
配置文件。设置 PKG_CONFIG_PATH
环境变量,使其指向 lept.pc
的位置。如果您将 leptonica 安装到其默认位置,您应该这样做:
$ export PKG_CONFIG_PATH=/usr/local/lib/pkgconfig/
在 运行 configure
之前。
我们最初在 centos 7 中安装了 tesseract 3.04,并且知道切换到 tesseract 3.05。我们已经卸载了旧版本,并且已经安装了从 leptonica 主页下载的 leptonica-1.75.3。
但是,当我们安装 tesseract 3.05 时,出现以下错误 检查 LEPTONICA... 没有 配置:错误:需要 Leptonica 1.74 或更高版本。尝试安装 libleptonica-dev 包。
当运行 ./configure in console in tesseract-3.05.01 folder.
需要知道问题出在哪里。
configure
脚本使用 pkg-config
查看是否安装了 leptonica
库(并具有所需的版本)。
从源代码编译并安装 leptonica 后,您必须手动告诉 pkg-config
在哪里可以找到随 leptonica 安装的 lept.pc
配置文件。设置 PKG_CONFIG_PATH
环境变量,使其指向 lept.pc
的位置。如果您将 leptonica 安装到其默认位置,您应该这样做:
$ export PKG_CONFIG_PATH=/usr/local/lib/pkgconfig/
在 运行 configure
之前。