Installation

OMIO targets Python 3.12 and higher and builds on the standard scientific Python stack commonly used in microscopy and large scale image processing workflows. Core dependencies include NumPy, tifffile, zarr, dask, napari, and related libraries for metadata handling and image I/O.

For Developers

For development work or reproducible analysis pipelines, it is often convenient to install OMIO from source:

git clone https://github.com/FabrizioMusacchio/OMIO.git
cd OMIO
pip install .

Alternatively, OMIO can be installed directly from GitHub without cloning the repository:

pip install git+https://github.com/FabrizioMusacchio/OMIO.git

If you plan to modify the code, use an editable installation:

pip install -e .

or, to include development dependencies such as testing and documentation tools:

pip install -e .[dev]

Avoid mixing local source folders and installed packages with the same name in the same working directory, as this can lead to confusing import behavior and unexpected imports during development.