Skip to content

Latest commit

 

History

History
66 lines (45 loc) · 3.75 KB

File metadata and controls

66 lines (45 loc) · 3.75 KB

Platform Support

Operating system and runtime backend compatibility for Ouroboros.

For installation instructions, see Getting Started.

Requirements

  • Python: >= 3.12
  • Package manager: uv (recommended) or pip

Operating System Support Matrix

Platform Status Notes
macOS (ARM/Intel) Supported Primary development and CI platform
Linux (x86_64) Supported Tested on Ubuntu 22.04+, Debian 12+, Fedora 38+
Linux (ARM64) Supported Tested on Ubuntu 22.04+ (aarch64)
Windows (WSL 2) Supported Recommended Windows path; runs the Linux build
Windows (native) Experimental See Windows caveats below

Runtime Backend Support Matrix

Runtime Backend macOS Linux Windows (WSL 2) Windows (native)
Claude Code Yes Yes Yes Experimental
Codex CLI Yes Yes Yes Not supported
(custom adapter) Depends on adapter Depends on adapter Depends on adapter Depends on adapter

See the runtime capability matrix for a feature comparison across backends.

Linux Distribution Notes

  • Ubuntu/Debian: Python 3.12+ may require the deadsnakes PPA on older releases.
  • Fedora 38+: Python 3.12 is available in the default repositories.
  • Alpine: Not tested. Native dependencies may require additional build tools.

Windows (WSL 2)

For the best Windows experience, use WSL 2 with a supported Linux distribution (Ubuntu recommended). All runtime backends and features are fully supported under WSL 2.

Windows 11 Home is a valid WSL 2 host when virtualization and the required Windows optional features are available. If WSL itself will not install, follow the Windows WSL 2 troubleshooting guide before installing Ouroboros.

Windows (native) Caveats

Native Windows support is experimental. Known limitations:

  • File path handling: Some workflow operations assume POSIX-style paths.
  • Process management: Subprocess spawning and signal handling differ on Windows.
  • Codex CLI: Not supported on native Windows. Use WSL 2 instead.
  • Terminal/TUI: Requires a terminal with ANSI support (Windows Terminal recommended; cmd.exe is not supported).
  • CI testing: Native Windows is not part of the current CI matrix.

If you encounter Windows-specific issues, please open an issue with the platform:windows label.

Python Version Compatibility

Python Version Status
3.12 Supported
3.13 Supported
3.14 Supported
3.14 beta/RC Best effort
< 3.12 Not supported

The minimum required version is Python >= 3.12 as specified in pyproject.toml. Source checkouts default to stable Python 3.14 through .python-version; that default does not narrow the supported runtime range to 3.14-only. If a local 3.14 prerelease or dependency combination fails during contributor setup, recreate the environment with an explicit supported stable interpreter while preserving the selected dependency profile, such as uv sync --python 3.12 or uv sync --python 3.12 --all-extras, then run contributor commands with the same interpreter via uv run --python 3.12 ....