Skip to content

Installation

Hyper-Extract requires Python 3.11+.


Install as CLI Tool

If you want to use the he command from anywhere:

uv tool install hyperextract
pipx install hyperextract

Install as Python Library

If you want to use Hyper-Extract in your Python code:

uv pip install hyperextract
pip install hyperextract

Verify Installation

he --version

You should see something like:

Hyper-Extract CLI version 0.1.2.dev0
import hyperextract
print(hyperextract.__version__)

Development Installation

If you want to contribute or modify the source code:

# Clone the repository
git clone https://github.com/yifanfeng97/hyper-extract.git
cd hyper-extract

# Install in editable mode with dev dependencies
pip install -e ".[dev]"

What's Next?