Skip to content

Installation

Requirements

  • Python 3.10 or later
  • At least one renderer backend (PySide6 or Pygfx)

Install with pip

# Desktop apps (PySide6)
pip install collagraph[pyside]

# 3D graphics (Pygfx)
pip install collagraph[pygfx]

# Both
pip install collagraph[pyside,pygfx]

Install with uv

uv add collagraph[pyside]

Development Setup

git clone https://github.com/fork-tongue/collagraph.git
cd collagraph

# Basic dev setup
uv sync

# Full setup with all renderers
uv sync --all-groups