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

Installation

If you’re running Windows, you’ll have to use Windows Subsystem for Linux (WSL). You may need to do a websearch on how to install that. Then com back and choose one of the options bellow.

Direct Download

  1. Download the latest build for your computer architecture.
  2. Put it in a $PATH directory so you can run it anywhere. For instance:
# Also renames the binary to 'noodle' for convenience.
mv ~/Downloads/noodle-2024.alpha.4-amd64 ~/.local/bin/noodle
  1. Make it executable.
chmod +x ~/.local/bin/noodle

We’re all set. See Getting Started to start noodling!

Build From Source

Requires cmake to be installed on your system.

  1. Get the code with curl:
curl -fsSL https://noodle.franciscogg.site/source-2024.alpha.4.zip &&\
unzip noodle_cli-2024.alpha.4.zip
  1. Prepare the build directory.
cd noodle_cli/ && cmake
  1. Compile and install.
make install