-
Notifications
You must be signed in to change notification settings - Fork 4.1k
[Plasma] plasma_store fails to find libarrow_gpu.so #18646
Copy link
Copy link
Closed
Description
After install, I get the following:
$ which plasma_store
/home/antoine/miniconda3/envs/pyarrow/bin/plasma_store
$ plasma_store
plasma_store: error while loading shared libraries: libarrow_gpu.so.0: cannot open shared object file: No such file or directory
$ ldd `which plasma_store`
linux-vdso.so.1 => (0x00007ffe7bdf0000)
libarrow_gpu.so.0 => not found
libpthread.so.0 => /lib/x86_64-linux-gnu/libpthread.so.0 (0x00007f5d81676000)
libstdc++.so.6 => /usr/lib/x86_64-linux-gnu/libstdc++.so.6 (0x00007f5d812ee000)
libm.so.6 => /lib/x86_64-linux-gnu/libm.so.6 (0x00007f5d80fe5000)
libgcc_s.so.1 => /lib/x86_64-linux-gnu/libgcc_s.so.1 (0x00007f5d80dce000)
libc.so.6 => /lib/x86_64-linux-gnu/libc.so.6 (0x00007f5d80a04000)
/lib64/ld-linux-x86-64.so.2 (0x00007f5d81893000)Note that libarrow_gpu.so is installed in /home/antoine/miniconda3/envs/pyarrow/lib/
There are probably two solutions:
- link statically with the Arrow GPU libs (I wonder why this isn't done like it is for the Arrow libs)
- or make the rpath correct
Reporter: Antoine Pitrou / @pitrou
Assignee: Antoine Pitrou / @pitrou
PRs and other links:
Note: This issue was originally created as ARROW-2465. Please see the migration documentation for further details.
Reactions are currently unavailable