N oodle
Toggle Dark/Light/Auto mode Toggle Dark/Light/Auto mode Toggle Dark/Light/Auto mode Back to homepage

Installation

Direct Download for Linux or Mac

  1. Download the latest build for your computer architecture.
  2. Put it in a $PATH directory so you can run it anywhere. You should rename the executable to ‘noodle’ for convenience. For example:
mv ~/Downloads/noodle-2025.alpha.5-amd64 ~/.local/bin/noodle
  1. Make it executable.
chmod +x ~/.local/bin/noodle

Direct Download for Windows

Download the latest build for your computer architecture. Most likely you need the amd build if you’re using a normal laptop or desktop.

On Windows you’ll have to check your %PATH% in the command line or powershell.

echo %PATH%

You can place the noodle executable in one of the folders listed in the output. But it’s recommend to create a new one.

  1. Make the new path, AKA the install folder.
# This is an example. You can choose where you want it.
mkdir "C:\Program Files\noodle\"
  1. Add it to the environment variable.
# Use the chosen install path.
setx PATH "%PATH%;C:\Program Files\noodle\"
  1. Verify it.
# Make sure the ouput has the install path.
echo %PATH%
  1. Move the executable to the install path.
# Assumes you saved the latest noodle in 'YourUser\Downloads\'.
mv "%USER_PROFILE%\Downloads\noodle-2025.alpha.5-windows-amd.exe" "C:\Program Files\noodle\noodle.exe"
  1. Go to a working directory and see if you can run noodle.
noodle --version

And there you go. You’re all set. See Getting Started to start noodling!

Build From Source with Git and Zig

You’ll need to install git and zig on your system somehow. These instructions are not platform specific.

  1. Get the source code with git.
git clone --branch 2025.alpha.5 --single-branch --recurse-submodules git://franciscogg.site/noodle_cli.git noodle.git && cd noodle.git
  1. Build and find the output at zig-out/bin/noodle.
zig build --release=safe
  1. Install the binary found at zig-out/bin/noodle as with the direct dowmload.
cp zig-out/bin/noodle 

You can also specify the output path in the build command directly.

# Linux example:
zig build --release=safe --prefix-exe-dir ~/.local/bin/

Build From Source with Git and CMake

You’ll need to install git and cmake on your system somehow. These instructions are not platform specific.

  1. Get the source code with git.
git clone --branch 2025.alpha.5 --single-branch --recurse-submodules git://franciscogg.site/noodle_cli.git
  1. Prepare the build directory.
cd noodle_cli/ && cmake .
  1. Compile and install.
sudo make install