Skip to content

Commit

Permalink
Merge pull request #208 from wey-gu/binary-manual-installation-hint
Browse files Browse the repository at this point in the history
Provide an easier binary manual installation example command
  • Loading branch information
AkihiroSuda authored Sep 15, 2021
2 parents 4d3aafa + 25902ff commit 278abae
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -111,7 +111,13 @@ See https://github.com/simnalamburt/homebrew-x for the further information of th
#### Install Lima

- Download the binary archive of Lima from https://github.com/lima-vm/lima/releases ,
and extract it under `/usr/local` (or somewhere else).
and extract it under `/usr/local` (or somewhere else). For instance:

```bash
brew install jq
VERSION=$(curl -fsSL https://api.github.com/repos/lima-vm/lima/releases/latest | jq -r .tag_name)
curl -fsSL https://github.com/lima-vm/lima/releases/download/${VERSION}/lima-${VERSION:1}-$(uname -s)-$(uname -m).tar.gz | tar Cxzvm /usr/local
```

- To install Lima from the source, run `make && make install`.

Expand Down

0 comments on commit 278abae

Please sign in to comment.