#31261 litellm rust pip binary
We are starting this issue as the central place for people to report install issues with the upcoming LiteLLM Rust-backed pip binary work.
Goal: make the default `pip install litellm` include the Rust extension where a compatible wheel is available, so LiteLLM Python code can depend on the Rust implementation without requiring a separate user-facing package.
Please report any install/import problems here, especially for:
- macOS arm64 or x86_64 - Linux x86_64 or aarch64 - Alpine / musllinux containers - Windows x86_64 - less common Python runtimes or platforms
Helpful report format:
```text OS / distro: CPU architecture: Python version: pip or uv version: Install command: Full error log: Output of: python -m pip debug --verbose | head -80 Output of: python -c "import platform, sys; print(sys.version); print(platform.platform()); print(platform.machine())" ```
Known implementation direction:
- ship Rust inside the default `litellm` platform wheels - expose the native module under the `litellm` package, e.g. `litellm._rust_bridge` - use PyO3 + maturin for binary wheel builds - keep CI smoke tests for import/install on every supported wheel target - make Docker source builds in…