【发布时间】:2019-12-25 17:41:29
【问题描述】:
我关注了这个 wiki (https://github.com/tesseract-ocr/tesseract/wiki/Compiling#macos)。
但是当运行 make training 时,
我明白了:
Need to reconfigure project, so there are no errors
那么我应该如何编译训练工具呢?
【问题讨论】:
我关注了这个 wiki (https://github.com/tesseract-ocr/tesseract/wiki/Compiling#macos)。
但是当运行 make training 时,
我明白了:
Need to reconfigure project, so there are no errors
那么我应该如何编译训练工具呢?
【问题讨论】:
请检查 ./configure 的输出,它可能包含以下文本: 由于缺少依赖关系,您无法构建培训工具。 检查配置输出以了解详细信息。
所以你需要检查 ./configure 的整个输出来找到缺失的依赖并安装它。
缺少依赖提示的例子:
配置:警告:需要 icu 52.1 或更高版本,但未找到。 配置:警告:将不会构建培训工具。 配置:警告:尝试安装 libicu-devel 包。
【讨论】: