Installation¶
Requirements¶
vibframe-anndata requires Python 3.10 or newer.
A clean virtual environment is recommended:
On Windows PowerShell, activate a venv with:
Verify the installation¶
python - <<'PY'
import vibframe_anndata as vfta
print(vfta.__version__)
print(vfta.import_raw)
print(vfta.import_raw_to_h5ad)
PY
For release 0.3.0 the first line should print:
Core dependencies¶
The package builds on established scientific Python components including AnnData, Awkward Array, NumPy, pandas, PyArrow, SciPy and PyYAML.
No compiler or native extension build is required for the package itself.
Pinning for reproducible research¶
For a paper, notebook archive or experiment that must remain reproducible, pin the package version explicitly:
Then use the 0.3.0 documentation version rather than latest.
Upgrading¶
Before upgrading an existing analysis pipeline, check the versioned changelog and known limitations. H5AD files preserve package provenance so the producer version can be inspected later.