Installation¶
Get ChimeraLM installed on your system in just a few minutes.
Prerequisites¶
Requirements
- Python: 3.10 or 3.11 (3.12 not yet supported)
- Operating System: Linux, macOS, or Windows
- Optional: CUDA-compatible GPU for accelerated inference
Installation Methods¶
Choose your preferred installation method:
The easiest way to install ChimeraLM:
Verify the installation:
Install using conda:
Or create a new environment:
Using the fast uv package manager:
Or with a virtual environment:
GPU Setup¶
GPU Acceleration
For significantly faster predictions, install GPU support:
CUDA (NVIDIA GPUs)¶
ChimeraLM automatically uses CUDA if available. Verify your GPU is detected:
If CUDA is not detected, install PyTorch with CUDA support:
MPS (Apple Silicon)¶
For M1/M2/M3 Macs, MPS acceleration is automatically enabled:
Python Version Compatibility
ChimeraLM requires Python 3.10, 3.11 and 3.12. Python 3.13 is not yet supported due to dependency constraints.
Verification¶
Confirm ChimeraLM is installed correctly:
# Check version
chimeralm --version
# View available commands
chimeralm --help
# Test import (Python)
python -c "import chimeralm; print('ChimeraLM imported successfully')"
Expected output:
Troubleshooting Installation¶
Common Issues¶
ImportError: No module named 'chimeralm'
Solution: Ensure you've activated the correct Python environment:
CUDA out of memory during installation
Solution: This is normal if testing GPU during install. Reduce batch size when running predictions.
PyTorch version conflict
Solution: ChimeraLM requires PyTorch 2.5.1. Uninstall conflicting versions:
For more issues, see the Troubleshooting Guide.
Next Steps¶
Now that ChimeraLM is installed, try the Quick Start tutorial to run your first prediction!