Open
Description
❓ Questions and Help
I am trying to use Torch-XLA v2.3.0 but it fails with:
line 7, in <module>
import _XLAC
ImportError: libpython3.10.so.1.0: cannot open shared object file: No such file or directory
I noticed this message here:
Bazel brings in [pybind11](https://github.com/pybind/pybind11) embeded
python and links against it to provide `libpython` to the plugin using
this mechanism. Python headers are also sourced from there instead of
depending on the system version. These are satisfied from the
`"@pybind11//:pybind11_embed"`, which sets up compiler options for
linking with `libpython` transitively.
which suggests XLA is pulling in a two year old version of pybind11_bazel, which gets its python binary/library/headers/paths by inspecting the copy of the interpreter installed on the operating system. During this probing pybind11_bazel explicitly asks the python interpreter to give it the linker flags it would need to embed the interpreter in its code, leading to that dependency. This renders it unusable with static python.
Is there a way to make this work/could you provide a different build of Torch-XLA which is compatible with static python?