私はvowpalwobbitをインストールしようとしていますが、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