From 745f2a802e483f82686eb8a2b702fdbab28c91b5 Mon Sep 17 00:00:00 2001 From: Daniel Gomez Date: Wed, 12 Nov 2025 10:21:48 -0500 Subject: [PATCH] pixi support instructions --- README.md | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) diff --git a/README.md b/README.md index a021c80..bab3c4a 100644 --- a/README.md +++ b/README.md @@ -34,6 +34,25 @@ If you do not want to use Docker, we recommend using a fresh Anaconda/Miniconda conda create -n fireants python=3.9 ``` +If you use pixi, the following should work to give you an enviroment with fireANTs available: +``` +git clone https://github.com/rohitrango/fireants +cd fireants +pixi init --format pyproject +pixi add python=3.9 +pixi add cuda-nvcc=12.2 +pixi add libcusparse-dev libcublas-dev libcusolver-dev +pixi add pip setuptools +# sometimes setuptools is not exposed due to pixi internals. +pixi run python -m pip uninstall setuptools +pixi run python -m pip install setuptools +pixi install +cd fused_ops +pixi shell +## +python setup.py build_ext +``` + To install FireANTs locally: ``` git clone https://github.com/rohitrango/fireants