Skip to content

Commit

Permalink
docs: update dive installation steps for linux (#206)
Browse files Browse the repository at this point in the history
* docs: update dive installation steps for linux

* chore: update spacing
  • Loading branch information
shreyasbhat0 authored Oct 26, 2023
1 parent d492197 commit 6af8f30
Showing 1 changed file with 17 additions and 5 deletions.
22 changes: 17 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -54,12 +54,24 @@ Serving as an all-in-one solution, DIVE CLI eliminates the hassle of manually co
```
- Install on **`linux`**

```bash
$ curl -L https://github.com/HugoByte/DIVE/releases/download/{latest-version}/dive-cli_{latest-version}_linux_{arch}.tar.gz
$ tar -xvzf dive-cli_{latest-version}_linux_{arch}.tar.gz
$ mv dive /usr/local/bin
$ rm dive-cli_{latest-version}_linux_{arch}.tar.gz
Please find the latest release [here](https://github.com/HugoByte/DIVE/releases)

Run below command to install DIVE CLI by mentioning latest release version and machine arch where dive is getting installed:

```shell
curl -L https://github.com/HugoByte/DIVE/releases/download/{latest-version}/dive-cli_{latest-version}_linux_{arch}.tar.gz | sudo tar -xzv -C /usr/local/bin/ dive
```

For example, if the latest version is v0.0.13-beta and system's architecture is amd64, the command will be:

```shell
curl -L https://github.com/HugoByte/DIVE/releases/download/v0.0.13-beta/dive-cli_v0.0.13-beta_linux_amd64.tar.gz | sudo tar xzv -C /usr/local/bin/ dive
```

Verify installation by running below command which should print out the dive version installed

```shell
dive version
```

- Install on **`windows`**:
Expand Down

0 comments on commit 6af8f30

Please sign in to comment.