I'm encountering an error after installing node on a new machine.
$ -node
node: error while loading shared libraries: libv8.so.3: cannot open shared object file: No such file or directory
I tried to install v8 with the instructions from http://code.google.com/p/v8/wiki/BuildingWithGYP
but with very little luck. Any help on this issue?
my system is
SUSE Linux Enterprise Server 11 (x86_64) VERSION = 11 PATCHLEVEL = 2
Thank you in advance,
I had encountered the same problem, and that answer solved it - Linux error while loading shared libraries: cannot open shared object file: No such file or directory
long story short ,
$ locate libv8.so.3
$ LD_LIBRARY_PATH=$LD_LIBRARY_PATH:/my_library/path.so.something
$ export LD_LIBRARY_PATH
$ ./my_app
GL, ido