Where to get boost / python.hpp?

I found some python.hpp project as #include<boost/python.hpp> , but this file is not included in the project, where can I get this file? I did a basic search but received no answer.

+4
source share
1 answer

Download here:

 http://www.boost.org/ 

Linux distributions usually have packages:

 sudo apt-get install libboost-python1.42-dev 

or just install everything:

 sudo apt-get install boost-1-47-0 libboost-all-dev 
+4
source

All Articles