views:

33

answers:

0

I am attempting to install PyV8 (http://code.google.com/p/pyv8/) using:

python setup.py install

However, the build fails with the following:

louis@louis-desktop:~/Downloads/PyV8-0.9$ python setup.py install
running install
running build
running build_py
running build_ext
building '_PyV8' extension
gcc -pthread -fno-strict-aliasing -DNDEBUG -g -fwrapv -O2 -Wall -Wstrict-prototypes -fPIC -DBOOST_PYTHON_STATIC_LIB -DV8_NATIVE_REGEXP -DENABLE_DISASSEMBLER -DENABLE_LOGGING_AND_PROFILING -DENABLE_DEBUGGER_SUPPORT -DV8_TARGET_ARCH_X64 -I/home/louis/Downloads/v8/include -I/home/louis/Downloads/v8 -I/home/louis/Downloads/v8/src -I/usr/include/python2.6 -c src/Exception.cpp -o build/temp.linux-x86_64-2.6/src/Exception.o
cc1plus: warning: command line option "-Wstrict-prototypes" is valid for Ada/C/ObjC but not for C++
In file included from src/Exception.cpp:1:
src/Exception.h:23:28: error: boost/python.hpp: No such file or directory

I've downloaded and compiled the latest version of Boost. Per the instructions on the PyV8 website I've also exported $BOOST_HOME to the boost root directory.

Any ideas how to correct this?