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). Then 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:
# renaming the binary so we can just call 'noodle'
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 git and cmake to be installed on your system.

# get the code
git clone https://github.com/TinyBehemoth/noodle_cli.git
# prepare build directory
mkdir noodle_cli/build &&\
cd noodle_cli/build &&\
cmake .. 
# install
sudo make install