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.
- Download the latest build for your computer architecture.
- 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
- Make it executable.
chmod +x ~/.local/bin/noodle
We’re all set. See Getting Started to start noodling!
Requires cmake to be installed on your system.
- Get the code with curl:
curl -fsSL https://noodle.franciscogg.site/source-2024.alpha.4.zip &&\
unzip noodle_cli-2024.alpha.4.zip
- Prepare the build directory.
cd noodle_cli/ && cmake
- Compile and install.
make install