I want to install PyV8 in Ubuntu 13.04. However pip install -v pyv8 takes super long to build and finally fails.
How can I install PyV8 on a Ubuntu 13.04 machine?
Here is the error log
InstallationError: Command /home/x/pyv8/bin/python -c "import setuptools;__file__='/home/x/pyv8/build/pyv8/setup.py';exec(compile(open(__file__).read().replace('\r\n', '\n'), __file__, 'exec'))" install --record /tmp/pip-63AI25-record/install-record.txt --single-version-externally-managed --install-headers /home/x/pyv8/include/site/python2.7 failed with error code 1 in /home/x/pyv8/build/pyv8
1 Answer
There is a good tutorial on the web, which solves this problem:
The steps that worked for me where a bit different though:
sudo apt-get install scons libboost-python-devsvn checkout v8svn checkout pyv8cd v8export V8_HOME=`pwd`cd ../pyv8sudo python setup.py buildsudo python setup.py install