belltailjp / selective_search_py

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

make ERROR <pyconfig.h> #17

Closed sdadia closed 8 years ago

sdadia commented 8 years ago

When I run : make it gives me an error /usr/include/boost/python/detail/wrap_python.hpp:50:23: fatal error: pyconfig.h: No such file or directory

include

                                ^

It says there is no file/directory

aelnouby commented 8 years ago

Export the /include/python directory I fixed it with this export: export CPLUS_INCLUDE_PATH="$CPLUS_INCLUDE_PATH:/usr/include/python3.5m/"

Reference: http://stackoverflow.com/questions/19810940/ubuntu-linking-boost-python-fatal-error-pyconfig-cannot-be-found

Adityakunwar commented 7 years ago

Where shall I include the export line? I tried it in my .bashrc file but it didn't work

imsamiksha commented 5 years ago

Where shall I include the export line? I tried it in my .bashrc file but it didn't work

Same with me