Installation
If you’re running Windows, you’ll have to use Windows Subsystem for Linux (WSL). Then 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:
# renaming the binary so we can just call 'noodle'
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 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