Skip to content

Installation

  • Python 3.9 or higher (supports Python 3.9, 3.10, 3.11, 3.12, and 3.13)

The recommended way to install Palettize is via pip or uv:

Terminal window
# Using pip
pip install palettize
# Using uv (recommended)
uv pip install palettize

To install the latest development version from GitHub:

Terminal window
git clone https://github.com/kovaca/palettize.git
cd palettize
pip install .

Or with uv:

Terminal window
git clone https://github.com/kovaca/palettize.git
cd palettize
uv pip install .

After installation, verify that Palettize is working:

Terminal window
palettize --version

You should see the version number printed to the console.

Palettize automatically installs the following dependencies:

PackagePurpose
coloraideAdvanced color manipulation and interpolation
typerCLI framework
richTerminal formatting and colors
webcolorsNamed color support
cmapColormap presets library

Once installed, head to the Quick Start guide to learn the basics.