Installation
AlignAIR is easy to set up using Docker (recommended) or locally (advanced users).
Docker Installation (Recommended)
The easiest way to run AlignAIR is via Docker. No manual setup needed.
1. Pull the Docker image:
docker pull thomask90/alignair:latest
2. Run the container:
docker run -it --rm -v /path/to/local/data:/data thomask90/alignair:latest
📦 Tip: Mount your local folder into /data
inside the container.
Prerequisites
🚀 For best performance, we recommend:
- NVIDIA GPU with CUDA 11 support (CPU also works, but slower)
- Docker installed and configured
Local Installation (Advanced)
Prefer building from source? You can manually install AlignAIR locally:
git clone https://github.com/MuteJester/AlignAIR.git
cd AlignAIR
pip install -r requirements.txt
🛠️ This method requires a properly configured Python environment and is recommended for developers only.