> ## Documentation Index
> Fetch the complete documentation index at: https://bench.flashinfer.ai/docs/llms.txt
> Use this file to discover all available pages before exploring further.

# Installation

> Set up FlashInfer-Bench from PyPI or source and verify your environment.

## Prerequisites

* OS: Linux
* Python: 3.10, 3.11, 3.12, 3.13

## Python Package (WIP)

FlashInfer-Bench is available via pip:

```bash theme={null}
python3 -m pip install flashinfer-bench
```

## Install from Source

You may want to install FlashInfer-Bench from source code for development purposes.

```bash theme={null}
# Clone the FlashInfer-Bench repository
git clone https://github.com/flashinfer-ai/flashinfer-bench.git

# Install the Python package
pip install -v -e .
```

## Verify installation

```python theme={null}
>>> import flashinfer_bench as flb
>>> flb.__version__
'0.0.1'
```
