【发布时间】:2012-07-11 08:48:55
【问题描述】:
我正在努力安装 vowpal wobbit,但当我运行 make 文件时它失败了,抛出:
cd library; make; cd ..
g++ -g -o ezexample temp2.cc -L ../vowpalwabbit -l vw -l allreduce -l boost_program_options -l z -l pthread
ld: library not found for -lboost_program_options collect2: ld returned 1 exit status make[1]: *** [ezexample] Error 1'
然后我通过指定 -L/usr/local/lib 在此处添加了指向 boost 库的链接
现在我收到以下错误:
g++ -g -o ezexample temp2.cc -L/usr/local/lib ../vowpalwabbit -l vw -l allreduce -l boost_program_options -l z -l pthread
ld: library not found for -lvw
collect2: ld returned 1 exit status
make: *** [ezexample] Error 1
【问题讨论】:
-
这(可能)更适合 SO。投票结束。
-
不过,我正在寻找使用过 vowpal wabbit 的人。
-
你有一个有效的
boost安装吗?program_options库应该单独构建,如果我没记错的话。此外,-L或-l开关后不应有空格。
标签: machine-learning vowpalwabbit large-data