Installation
Requirements
Section titled “Requirements”- Python 3.9 or higher (supports Python 3.9, 3.10, 3.11, 3.12, and 3.13)
Install from PyPI
Section titled “Install from PyPI”The recommended way to install Palettize is via pip or uv:
# Using pippip install palettize
# Using uv (recommended)uv pip install palettizeInstall from Source
Section titled “Install from Source”To install the latest development version from GitHub:
git clone https://github.com/kovaca/palettize.gitcd palettizepip install .Or with uv:
git clone https://github.com/kovaca/palettize.gitcd palettizeuv pip install .Verify Installation
Section titled “Verify Installation”After installation, verify that Palettize is working:
palettize --versionYou should see the version number printed to the console.
Dependencies
Section titled “Dependencies”Palettize automatically installs the following dependencies:
| Package | Purpose |
|---|---|
| coloraide | Advanced color manipulation and interpolation |
| typer | CLI framework |
| rich | Terminal formatting and colors |
| webcolors | Named color support |
| cmap | Colormap presets library |
Next Steps
Section titled “Next Steps”Once installed, head to the Quick Start guide to learn the basics.