Installation
This guide shows the minimal installation paths for Runlet.
Base package
Install the core package:
pip install runlet
OpenAI-compatible providers
Install the optional OpenAI dependency:
pip install "runlet[openai]"
Anthropic provider
Install the optional Anthropic dependency:
pip install "runlet[anthropic]"
If you want both:
pip install "runlet[openai,anthropic]"
If you want the latest pre-release explicitly:
pip install --pre "runlet[openai]"
Python version
Runlet requires Python 3.10 or newer.
Next step
Continue with First Agent.