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