Installation and setup

This page describes how to install and setup Ibis Birdbrain.

Install from PyPI

pip install ibis-birdbrain

Data platform setup

Create an Ibis connection:

Warning

Only DuckDB is installed by default. For now, you need to install other backends manually with Ibis.

import ibis

backend = "duckdb"
backend_uri = ""

con = ibis.connect(f"{backend}://{backend_uri}")
con
<ibis.backends.duckdb.Backend at 0x1487a2890>

AI platform setup

See Marvin documentation for setup.

Warning

Only OpenAI and Azure OpenAI are supported for now.

Next steps

Learn how get started with Ibis Birdbrain’s CLI.

Back to top