统计文本分析、语言建模和信息检索程序-Rainbow

Statistical text analysis, language modeling and information retrieval program - Rainbow

我正在尝试使用 Rainbow (http://www.cs.cmu.edu/~mccallum/bow/src/bow-20020213.tar.gz) 库来解决一个简单的问题,但是无法编译 rainbow.c 文件。

错误是

error: expected "FILENAME" or <FILENAME>

#include “bow/libbow.h”

         ^

./rainbow.c:23:10: fatal error: 'argp.h' file not found

#include <argp.h>

         ^

2 errors generated.

有什么方法可以避免生成工作编译文件。

这是在-

之后

*

error: 'bow/libbow.h' file not found with <angled> include;
      use "quotes" instead
#include <bow/libbow.h>
         ^~~~~~~~~~~~~~
         "bow/libbow.h"
In file included from ./rainbow.c:22:
./bow/libbow.h:40:10: fatal error: 'malloc.h' file not found
#include <malloc.h>             /* for malloc() and friends. */
         ^

*

如果可能的话,请花几分钟时间帮忙,因为我需要那个包来提交我选择的项目问题。

您是否编辑了 rainbow.c 文件?看起来第 22 行有 #include 行。您应该阅读 https://gcc.gnu.org/onlinedocs/cpp/Search-Path.html 并注意尖括号在标准包含路径(可以修改)上搜索文件。您可能需要进行一些安装。查看自述文件并确保您已按照安装说明进行操作。 我下载了你链接的弓包,然后看了看里面。有一个 rainbow.c(您显然正在尝试编译它。阅读包含的 README 文件并按照其中包含的 compilation/installation 说明进行操作。