sidebar_position: 1

Installation

pip install pyfluss

Building From Source (Optional)

Prerequisites: Python 3.9+, Rust 1.85+

git clone https://github.com/apache/fluss-rust.git
cd fluss-rust/bindings/python

Install maturin:

pip install maturin

Build and install:

# Development mode (editable)
maturin develop

# Or build a wheel
maturin build --release
pip install target/wheels/fluss-*.whl

Verify:

import fluss
print("Fluss Python bindings installed successfully!")