Skip to content

Commit

Permalink
docs: add install method
Browse files Browse the repository at this point in the history
  • Loading branch information
zezaeoh committed Apr 2, 2022
1 parent cf9c4b4 commit cb0a3fd
Showing 1 changed file with 14 additions and 0 deletions.
14 changes: 14 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,20 @@

## Installation

To download the latest release, run:

```bash
curl --silent --location "https://github.com/zezaeoh/gbox/releases/latest/download/gbox_$(uname -s)_amd64.tar.gz" | tar xz -C /tmp
sudo mv /tmp/gbox /usr/local/bin
```

For ARM system, please change ARCH (e.g. armv6, armv7 or arm64) accordingly

```bash
curl --silent --location "https://github.com/zezaeoh/gbox/releases/latest/download/gbox_$(uname -s)_arm64.tar.gz" | tar xz -C /tmp
sudo mv /tmp/gbox /usr/local/bin
```

macOS users can use [Homebrew](https://brew.sh):

```bash
Expand Down

0 comments on commit cb0a3fd

Please sign in to comment.