Link Search Menu Expand Document

Installation

Some examples show how to build reuqest.

Table of contents

  1. Binary releases
  2. go install
  3. hombrew
  4. docker
  5. Build from source

Binary releases

See the available binaries for different operating systems/architectures from the releases page.

go install

go install github.com/wklken/fetch@latest

hombrew

brew tap wklken/fetch
brew install fetch

docker

docker run --rm --net=host wklken/fetch help

# apple m1*/m2*
docker pull --platform=linux/amd64 wklken/fetch
docker run --rm --net=host wklken/fetch help

Build from source

  • dependencies: go1.21
git clone https://github.com/wklken/fetch.git
cd fetch
make build