docs/versioned_docs/version-1.10.0/Support/macos-support-matrix.mdx
Langflow supports both Apple Silicon (ARM64) and Intel (x86_64) Macs, but ML and AI features are only available on Apple Silicon due to hardware and dependency constraints.
Intel Macs lack the Neural Engine, Metal 3 GPU acceleration, and unified memory architecture that Apple Silicon uses to run ML workloads efficiently.
PyTorch, a popular AI/ML library, dropped support for macOS Intel (x86_64) starting with version 2.3.0 in April 2024. The last compatible release was PyTorch 2.2.2, which only supports Python versions 3.10–3.12. Many Langflow components depend on PyTorch, and are automatically excluded on Intel Macs to prevent installation failures.
Core Langflow features and OCR work on both architectures. ML/AI components and GPU acceleration are Apple Silicon only.
| Feature category | Apple Silicon (M1/M2/M3) | Intel (x86_64) |
|---|---|---|
| Core Langflow | Full support | Full support |
| ML/AI Components | Full support | Limited/Unavailable |
| GPU acceleration | Metal support | Not available |
| Native OCR | Full support | Full support |
All supported Python versions work on Apple Silicon. On Intel Macs, Python 3.13 and later lose PyTorch-dependent features like ALTK, HuggingFace, EasyOCR, and Docling.
| Python version | Apple Silicon | Intel Mac |
|---|---|---|
| 3.10 | Supported | Supported |
| 3.11 | Supported | Supported |
| 3.12 | Supported | Supported |
| 3.13 | Supported | Limited (no PyTorch) |
| 3.14 | Supported | Limited (no PyTorch) |
Feature support varies by Mac architecture. The following sections describe what works on each.
The following features work on both Apple Silicon and Intel Macs:
ocrmac (uses macOS Vision framework)The following features require Apple Silicon (ARM64) and are not available on Intel Macs:
docling-core (metadata-only) works on IntelIf you need ML features on an Intel Mac, consider using API-based providers such as HuggingFace, or a remove inference server with GPU support.
For some workloads, you can use Docker with ARM64 images with Rosetta 2:
docker run --platform linux/arm64 langflowai/langflow:latest
Installation instructions vary depending on your Mac architecture.
For Apple Silicon users, install Langflow normally with all features:
pip install langflow
Or with specific ML extras:
pip install langflow[altk,langchain-huggingface,easyocr]
For Intel Mac users, install the base package for core functionality. Attempting to install ML-dependent extras on Intel Macs will be automatically skipped due to platform markers in the package configuration.
pip install langflow
For troubleshooting, see Troubleshoot Intel Mac issues.
For more information, ask the Langflow community in GitHub Discussions or the Discord server.