Baike.dev
All toolsAI codingTrendingOpen sourceNewsSubmit
Log in
< Back to tools
E

elodin

> 编程语言
Open source

Elodin simulation and flight software monorepo.

538 stars0 likes0 views
WebsiteGitHub

About

Elodin simulation and flight software monorepo.

This monorepo contains the source code for all Elodin simulation and flight software:

  • Flight software
    • aleph-os: Aleph NixOS modules for composing a Linux flight software stack that runs on the Orin.
    • elodin-db (FSW application): A time-series database which functions as a central telemetry store and message bus.
    • serial-bridge (FSW application): Reads sensor data being streamed over the serial port and writes it to elodin-db.
    • mekf (FSW application): A Multiplicative Extended Kalman Filter implementation that fuses sensor data to estimate vehicle attitude.
    • sensor-fw: Aleph expansion board firmware that streams sensor data (IMU, mag, baro) to the Orin over USB/UART.
  • Simulation software
    • nox-py: Python SDK (includes ECS and JAX integration).
  • Editor: 3D viewer and graphing tool for visualizing both simulation and flight data.

Getting Started

Prerequisites

  • Determinate Systems Nix for a consistent development environment
  • Just: ( brew install just / apt install just )
  • git-lfs: ( brew install git-lfs / apt install git-lfs ), and make sure to activate it globally with git lfs install from the terminal.
  • STRONGLY prefer an Arm-based MacOS, nix works on x86 & Ubuntu but at much slower build speeds and worse DX.

Development Setup (Recommended: Nix)

The Elodin repository uses Nix to provide a consistent, reproducible development environment across all platforms. This is the same environment our team uses daily.

1. Install Nix

bash
# Install Determinate Systems Nix (recommended)
curl --proto '=https' --tlsv1.2 -sSf -L https://install.determinate.systems/nix | sh -s -- install

2. Clone the Repository

bash
git clone https://github.com/elodin-sys/elodin.git
cd elodin

3. Enter the Nix Development Shell (this can take awhile to build the first time)

bash
nix develop

[!TIP] The shell follows yours (bash or zsh; venv on PATH; no source needed). Override with ELODIN_SHELL=bash or ELODIN_SHELL=zsh. For Oh My Zsh + Powerlevel 10k: p10k configure if prompted.

4. Build and Install Elodin Editor and Elodin DB into your path

bash
just install

elodin --version

python examples/rocket/main.py run

Open the Elodin editor in a new nix develop shell and connect to the local server

bash
elodin editor

just install writes elodin / elodin-db and a Python venv into this shell's target/shells/$ELODIN_SHELL_ID/ so parallel worktrees and agent shells cannot overwrite each other.


Python SDK Development Setup (Nix-based continued)

5. Enter another Nix Development Shell, run the server & example simulation

Python SDK Development

bash
# In a new terminal
nix develop
# build the SDK python wheel
just install py
python examples/rocket/main.py run

Open the Elodin editor and connect to the local server

[!NOTE] Local setup instructions were validated on Arm M2 MacOS & Intel x86 Ubuntu 24.04 on 2025-10-12.


Alternative Local Setup (Ubuntu/Linux)

[!WARNING] This setup is more complex and may lead to inconsistent environments across developers. We strongly recommend using Nix instead.

If you cannot use Nix, you can manually install dependencies on Ubuntu/Linux:

Prerequisites

bash
# Install required tools via apt
sudo apt install just git-lfs pkg-config libasound2-dev libudev-dev cmake gfortran patchelf python3-dev

# Initialize git-lfs
git lfs install

After installing these packages, follow the same uvx maturin and cargo build steps above.

Additional Resources

  • Elodin App Documentation
  • Python SDK Documentation
  • Internal Nix Documentation

Issues· 0 open

View all issuesOpen on GitHub

No open issues yet, or sync has not completed.

> Tags

Rustaerospacedronesecsphysics-simulation

No comments yet. Be the first to share.

> Details

PublishedAug 1, 2026
UpdatedSep 17, 2026
Category编程语言
PricingOpen source

> Related tools

T
TypeScript
JavaScript 的超集,为前端与全栈提供静态类型
P
Python
通用编程语言,广泛用于 Web、数据与 AI
G
Go
Google 推出的简洁高效系统语言