Skip to main content
Install the Noorle CLI for your operating system.

Linux/macOS

curl -L cli.noorle.dev | sh
Verify installation:
noorle --version

Manual Installation

Download the appropriate binary for your platform from the latest release page. After downloading:
chmod +x noorle
sudo mv noorle /usr/local/bin/

Verify Installation

$ noorle --version
noorle version 1.2.3

$ noorle help
Usage: noorle [COMMAND] [OPTIONS]

Update CLI

noorle update
# or
curl -L cli.noorle.dev | sh

Uninstall

# If installed via script
rm -rf ~/.noorle
# Remove from PATH in your shell config

Shell Completion

Enable tab completion:
# Bash
noorle completion bash | sudo tee /usr/share/bash-completion.d/noorle

# Zsh
noorle completion zsh | sudo tee /usr/share/zsh/site-functions/_noorle

# Fish
noorle completion fish | sudo tee /usr/share/fish/vendor_completions.d/noorle.fish

Troubleshooting

“Command not found”
  • Ensure /usr/local/bin is in your PATH
  • Reinstall the CLI
Permission denied
  • CLI needs execute permission
  • Run: chmod +x /usr/local/bin/noorle
Wrong version installed
  • Check: which noorle
  • Remove old version first: sudo rm /path/to/noorle

Next Steps