安装 Open GRM thrax 时出错

Error while instaling Open GRM thrax

我已经在 Ubuntu 中安装了 Open Fst,并且运行良好。现在我正在尝试安装 Open GRM thrax。我尝试安装 2 个不同版本的 thrax。

Thrax 版本 1.1.0:

thraxOpenGrm/thrax-1.1.0$ ./configure

下面是我得到的错误。

checking how to hardcode library paths into programs... immediate
checking for bison... no
checking for byacc... no
checking for std::tr1::hash<long long unsigned>... yes
checking for __gnu_cxx::slist<int>... yes
checking fst/fst.h usability... yes
checking fst/fst.h presence... no
configure: WARNING: fst/fst.h: accepted by the compiler, rejected by the preprocessor!
configure: WARNING: fst/fst.h: proceeding with the compiler's result
checking for fst/fst.h... yes
checking fst/extensions/far/far.h usability... yes
checking fst/extensions/far/far.h presence... no
configure: WARNING: fst/extensions/far/far.h: accepted by the compiler, rejected by the preprocessor!
configure: WARNING: fst/extensions/far/far.h: proceeding with the compiler's result
checking for fst/extensions/far/far.h... yes
checking fst/extensions/pdt/pdt.h usability... no
checking fst/extensions/pdt/pdt.h presence... no
checking for fst/extensions/pdt/pdt.h... no
configure: error: fst/extensions/pdt/pdt.h header not found

Thrax 版本 0.1.0:

thraxOpenGrm/thrax-0.1.0$ ./configure

下面是我得到的错误。

checking how to hardcode library paths into programs... immediate
checking for bison... no
checking for byacc... no
checking for std::tr1::hash<long long unsigned>... yes
checking for __gnu_cxx::slist<int>... yes
checking fst/fst.h usability... no
checking fst/fst.h presence... no
checking for fst/fst.h... no
configure: error: fst/fst.h header not found

它会针对不同的 thrax 版本抛出不同的错误。我在这个论坛上看到了一个解决方案。

http://www.openfst.org/twiki/bin/view/Forum/GrmThraxForum

它说 openfst 必须是 'built' 和 ./configure --enable-far=true 。我卸载了 openfst 并使用 ./configure --enable-far=true./configure --enable-far 安装了它。错误仍然存​​在。

我会尝试删除 openfst,然后在系统上进行查找以确保所有 fst/fst.h 文件都消失了。它可能遗漏了某些东西,或者其他软件包可能提供了一些东西。

此外,--enable-far 的末尾不应有 =true。所以,也许可以那样尝试。

如果您指定 ./configure --enable-far=true,它应该可以工作。因为它会在 /usr/local/include 下安装 fst 文件夹(安装 opengrm 时你应该 运行 make install)

那么,您可能会遇到如下错误:fst/extensions/pdt/pdt.h header not found

你可以在./configure opengrm时添加--enable-pdt=true

在安装 openfst 期间,您必须键入:

./configure --enable-far=true --enable-pdt=true --enable-mpdt=true

然后你应该安装 thrax 并在上面输入终端:

export LD_LIBRARY_PATH=/usr/local/lib

我为 openfst-1.5.4 和 thrax-1.2.2 工作。

当我得到:

checking fst/extensions/pdt/pdt.h usability... no

我补充道:

--enable-pdt=true

./configure 对于 openfst,我对 mpdt 错误也做了同样的事情。如果你得到其他错误,你可以尝试做同样的事情。