belltailjp / selective_search_py

Python-based implementation of the Selective Search for Object Recognition.
MIT License
369 stars 121 forks source link

lboost_python3 #22

Open Dev2022 opened 8 years ago

Dev2022 commented 8 years ago

Hi after changing the CmakeList you have updated, now I am getting this error

Boost version: 1.58.0

Boost include path: /usr/local/include

Could not find the following Boost libraries:

  boost_python3
DennisBang commented 8 years ago

did you solve it because I have the same problem

Dev2022 commented 8 years ago

HI Dennis,

Yes. I have got an another version for Python2. That works well.This is the link

https://github.com/BradNeuberg/selective_search_py

SinForest commented 7 years ago

You can solve this by installing Boost with Python (e.g. libboost-all-dev in apt on Ubuntu or Debian) and linking libboost_python3.so to the library corresponding to your python version, e.g.: cd /usr/lib/x86_64-linux-gnu sudo ln -s libboost_python-py35.so libboost_python3.so

gaoyangyiqiao commented 6 years ago

Hi, Dev @Dev2022 ,when it is Python2, I met another problem:

ld: library not found for -lboost_numpy
clang: error: linker command failed with exit code 1 (use -v to see invocation)
make[2]: *** [segment.dylib] Error 1
make[1]: *** [CMakeFiles/segment.dir/all] Error 2
make: *** [all] Error 2