Skip to content

Installation

bbox-visualizer requires Python 3.10 or newer.

uv is an extremely fast Python package installer and resolver. To install bbox-visualizer using uv:

  1. First, install uv if you haven't already:

    pip install uv
    
  2. Then install bbox-visualizer:

    uv pip install bbox-visualizer
    

Alternative Installation (using pip)

You can also install bbox-visualizer using pip:

pip install bbox-visualizer

From Source

The source for bbox-visualizer can be downloaded from the Github repo.

You can clone the public repository:

git clone https://github.com/shoumikchow/bbox-visualizer.git

Or, if you have SSH keys set up with GitHub:

git clone git@github.com:shoumikchow/bbox-visualizer.git

Once you have a copy of the source, you can install it with uv (recommended):

uv pip install -e .

For development installation with all extra dependencies:

uv pip install -e ".[dev]"

Or using pip:

pip install -e .
pip install -e ".[dev]"  # for development installation