Dylan Dandelion
unread,Apr 28, 2012, 1:45:56 AM4/28/12Sign in to reply to author
Sign in to forward
You do not have permission to delete messages in this group
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to PyV8
I managed to build and use pyv8, but I had to workaround this error
message:
>>> import PyV8
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
File "PyV8.py", line 19, in <module>
import _PyV8
ImportError: libboost_python.so.1.49.0: cannot open shared object
file: No such file or directory
I didn't have root access and thus installed boost python to a custom
directory, and had to use this for the above error:
export LD_LIBRARY_PATH=/custom/path/to/libboost
Is this workaround necessary or are there other ways to allow finding
the libboost_python.so with having to set this environment variable?
Thanks.