Installation
How to install hodosome
Installation
This guide covers different ways to install hodosome.
Using UV (Recommended)
The fastest way to get started is with UV:
uv pip install hodosomeUsing Pip
You can also install with standard pip:
pip install hodosomeDevelopment Installation
For development, clone the repository and set up the environment:
git clone https://github.com/sciexp/hodosome.git
cd hodosome
# With Nix (recommended)
nix develop
# Or with UV
uv syncVerification
Verify your installation by running:
import hodosome
print(hodosome.__version__)