Skip to content

Installation

Get noodle on your machine in under a minute. Three ways, take your pick.

Terminal window
curl -LsSf https://raw.githubusercontent.com/wilfredinni/noodle/main/scripts/install.sh | sh

Detects your OS and architecture, downloads the latest binary from GitHub Releases, and drops it at ~/.local/bin/noodle.

If ~/.local/bin isn’t on your $PATH, the script will let you know — just add this to your shell config (~/.zshrc, ~/.bashrc, etc.):

Terminal window
export PATH="$HOME/.local/bin:$PATH"

Custom install location? Set NOODLE_INSTALL_DIR:

Terminal window
NOODLE_INSTALL_DIR=/usr/local/bin curl -LsSf ... | sh

Need a specific version? Pin it with NOODLE_VERSION:

Terminal window
NOODLE_VERSION=v0.1.0 curl -LsSf ... | sh
Terminal window
brew tap wilfredinni/noodle
brew trust wilfredinni/noodle
brew install noodle

Requires Bun.

Terminal window
git clone https://github.com/wilfredinni/noodle
cd noodle
bun install
bun run build:bin

The binary lands at ./noodle. Move it somewhere on your $PATH.

Terminal window
noodle --help

You should see the CLI usage output. To launch the TUI:

Terminal window
noodle

Prebuilt binaries for these combos — others need to build from source.

Platform Architecture Binary
macOS arm64
Linux x86_64
Linux arm64

Running an Intel Mac? Build from source above.

Terminal window
noodle update

Homebrew installs redirect to brew upgrade noodle. Everything else downloads and replaces the binary in-place.