chore: readme: fix homebrew installation process + add install from source

Fixes #58

Signed-off-by: Romain Beuque <556072+rbeuque74@users.noreply.github.com>
This commit is contained in:
Romain Beuque 2025-10-12 17:57:54 +02:00
parent 747c4746c8
commit c2c17ad04c

View file

@ -18,6 +18,7 @@
- [Binary download](#binary-download)
- [Run with Docker](#run-with-docker)
- [Install using HomeBrew](#install-using-homebrew)
- [Install from the source](#install-from-the-source)
- [Usage](#usage)
- [Authenticating the CLI](#authenticating-the-cli)
- [Examples](#examples)
@ -56,7 +57,15 @@ docker run -it --rm -v ovhcloud-cli-config-files:/config ovhcom/ovhcloud-cli log
## Install using Homebrew
```sh
brew install ovh/tap/ovhcloud-cli
brew install --cask ovh/tap/ovhcloud-cli
```
## Install from the source
Requires Go to be installed on your system.
```sh
go install github.com/ovh/ovhcloud-cli/cmd/ovhcloud@latest
```
# Usage