Installation

Install NUCH CLI application on your system.

Install Binary

You can install via cargo:

cargo install nuch

or you can install prebuilt binaries via shell script

curl --proto '=https' --tlsv1.2 -LsSf https://github.com/rivethorn/nuch/releases/download/v1.0.1/nuch-installer.sh | sh

You can also donwload the binary from Releases page and add it to your PATH.

Build from source

You can also build NUCH from source. Make sure you have the following prerequisites:

  • Rust toolchain (cargo)
  • Git installed and on $PATH

Then follow these steps:

Clone the repository:

git clone https://github.com/rivethorn/nuch.git
cd nuch

Test the build:

cargo test

Build and run NUCH:

# Build
cargo build --release

# Run (shows help)
cargo run -- --help

# Create a sample config (writes to XDG_CONFIG_HOME/nuch/config.toml or ~/.config/nuch/config.toml)
cargo run -- --config

(Optional) Install the binary to your PATH:

cargo install --path .