On 03.03.2017 12:38, P-M wrote:
This now compiles and works on one of my machines. My other machine now complains about libicudata.so.56:
Traceback (most recent call last): File "<stdin>", line 1, in <module> File "/home/pmj27/anaconda2/lib/python2.7/site-packages/graph_tool/__init__.py", line 111, in <module> dl_import("from . import libgraph_tool_core as libcore") File "/home/pmj27/anaconda2/lib/python2.7/site-packages/graph_tool/dl_import.py", line 61, in dl_import exec(import_expr, local_dict, global_dict) File "<string>", line 1, in <module> ImportError: libicudata.so.56: cannot open shared object file: No such file or directory
This may be an anaconda issue but I am not sure. Do you have any thoughts on this? I will open a ticket for this so we can close this thread down.
This is not a bug in graph-tool. The linker cannot find that library. You have to find where that is, and put its path into the LD_LIBRARY_PATH environment variable. Or pass it as "-Wl,-rpath=", as explained in the documentation. -- Tiago de Paula Peixoto <tiago@skewed.de>