You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Right now after
```
pip install executorch==1.1.0.dev20251001 --extra-index-url
https://download.pytorch.org/whl/nightly
```
Then run
```
python -c "from executorch.extension.llm.runner import MultimodalRunner"
```
I'm getting this error:
```
(executorch) [[email protected] /data/users/larryliu/executorch (main)]$ python -c "from executorch.extension.llm.runner import MultimodalRunner"
Traceback (most recent call last):
File "/home/larryliu/.conda/envs/executorch/lib/python3.11/site-packages/executorch/extension/llm/runner/__init__.py", line 16, in <module>
from executorch.extension.llm.runner._llm_runner import ( # noqa: F401
ImportError: libtorch_python.so: cannot open shared object file: No such file or directory
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "<string>", line 1, in <module>
File "/home/larryliu/.conda/envs/executorch/lib/python3.11/site-packages/executorch/extension/llm/runner/__init__.py", line 29, in <module>
raise RuntimeError(
RuntimeError: LLM runner is not installed. Please build ExecuTorch from source with EXECUTORCH_BUILD_PYBIND=ON
```
This PR should fix it by properly point to the installation path of
pytorch.
0 commit comments