The onnxruntime python package is not installed. Please install it with `pip install onnxruntime`
저도 같은 문제가 있었는데, python 버전 문제였습니다.이 프로젝트는 python 3.13 이상이 요구됨 (requires-python = ">=3.13")onnxruntime 은 python 3.14 이상은 지원하지 않음 그래서 python version 을 3.13으로 맞추고 uv sync를 해서 충돌이 해결되었습니다.