Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 5 additions & 6 deletions docs/getting_started/installation.md
Original file line number Diff line number Diff line change
Expand Up @@ -115,22 +115,21 @@ uv add "marimo[recommended]"
/// tab | install with conda

```bash
conda install -c conda-forge marimo "duckdb>=1.0.0" "altair>=5.4.0" pyarrow "polars>=1.9.0" "sqlglot>=23.4" "openai>=1.55.3" "ruff" "nbformat>=5.7.0" "vegafusion>=2.0.0" "vl-convert-python>=1.0.0"
conda install -c conda-forge marimo "duckdb>=1.0.0" "altair>=5.4.0" pyarrow "polars>=1.9.0" "sqlglot[rs]>=23.4" "openai>=1.55.3" "ruff" "nbformat>=5.7.0" "vegafusion>=2.0.0" "vl-convert-python>=1.0.0"
```

///

Installing marimo in this way installs the following additional dependencies and unlocks the following features:

| Dependency | Feature |
|----------------------------|----------------------------------|
| duckdb>=1.0.0 | SQL cells |
| Dependency | Feature |
|----------------------------|---------------------------------|
| duckdb>=1.0.0 | SQL cells |
| altair>=5.4.0 | Plotting in datasource viewer |
| polars[pyarrow]>=1.9.0 | SQL output back in Python |
| sqlglot>=23.4 | SQL cells parsing |
| sqlglot[rs]>=23.4 | SQL cells parsing |
| openai>=1.55.3 | AI features |
| ruff | Formatting |
| nbformat>=5.7.0 | Export as IPYNB |
| vegafusion>=2.0.0 | Performant charting |
| vl-convert-python>=1.0.0 | Required by vegafusion |

10 changes: 5 additions & 5 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ marimo_converter = "marimo._utils.docs:MarimoConverter"
sql = [
"duckdb>=1.0.0",
"polars[pyarrow]>=1.9.0",
"sqlglot>=26.2.0"
"sqlglot[rs]>=26.2.0"
]

# List of deps that are recommended for most users
Expand All @@ -94,7 +94,7 @@ recommended = [
"duckdb>=1.0.0", # SQL cells
"altair>=5.4.0", # Plotting in datasource viewer
"polars[pyarrow]>=1.9.0", # SQL output back in Python
"sqlglot>=26.2.0", # SQL cells parsing
"sqlglot[rs]>=26.2.0", # SQL cells parsing
"openai>=1.55.3", # AI features
"ruff", # Formatting
"nbformat>=5.7.0", # Export as IPYNB
Expand All @@ -108,7 +108,7 @@ dev = [
"opentelemetry-sdk~=1.26.0",
# For SQL
"duckdb>=1.0.0",
"sqlglot>=26.2.0",
"sqlglot[rs]>=26.2.0",
# For linting
"ruff~=0.9.1",
# For AI
Expand Down Expand Up @@ -181,7 +181,7 @@ dependencies = [
# Types in 2.2.0 don't work great with mypy
"narwhals>=1.34.1, <2.2.0",
"matplotlib>=3.8.0",
"sqlglot>=26.2.0",
"sqlglot[rs]>=26.2.0",
"sqlalchemy>=2.0.40",
"google-genai>=1.0.0",
"openai>=1.55.3",
Expand Down Expand Up @@ -263,7 +263,7 @@ extra-dependencies = [
"altair>=5.4.0",
"plotly>=5.14.0",
"polars>=1.32.2",
"sqlglot>=26.2.0",
"sqlglot[rs]>=26.2.0",
"sqlalchemy>=2.0.40",
"pyiceberg>=0.9.0",
# For testing clickhouse
Expand Down
Loading