6 Oct
2014
6 Oct
'14
6:19 p.m.
Thanks — that’s it. I had to set it to this to handle a local install of CGAL in /usr/local/lib/libCGAL.so.10.0.3: export LD_LIBRARY_PATH="/usr/local/lib:/usr/local/boost/stage/lib/" All is working now. Steve
You should not tell graph-tool itself, but rather the linker library. This is done via the LD_LIBRARY_PATH environment variable, which must include the directories to be search. In your case, before you start the python interpreter, you should do
export LD_LIBRARY_PATH="/usr/local/boost_1_56_0/stage/lib/"