Skip to content

Installation

Gastón Palomeque edited this page Feb 5, 2021 · 11 revisions

Installation

Docker

$ docker run -it gastonpalomeque/kure sh

Homebrew

brew install kure

Scoop

scoop install kure

Pre-compiled binaries

Linux
curl -Ls https://api.github.com/repos/GGP1/kure/releases/latest \
    | grep -wo "https.*linux-amd64*.tar.gz" \
    | wget -qi - \
    && tar xvfz kure*.tar.gz \
    && sudo mv kure /usr/local/bin/ \
    && rm kure*.tar.gz
macOS
Windows
  1. Add kure's binary file to the $PATH environment variable
  2. (Optional, see configuration) Set the "KURE_CONFIG" environment variable and restart the terminal after it:
setx KURE_CONFIG "absolute_path_to_your_config_file"

Compìle from source

$ git clone https://github.com/GGP1/kure
$ cd kure
$ make install OR go install -ldflags="-s -w" .