This is an automated email from the ASF dual-hosted git repository.
zeroshade pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/iceberg-go.git
The following commit(s) were added to refs/heads/main by this push:
new 8130c8c2 docs: Update README.md (#641)
8130c8c2 is described below
commit 8130c8c2108ed6dd966a6ce616feb371d7e57323
Author: Elton SV <[email protected]>
AuthorDate: Mon Dec 8 22:02:32 2025 +0100
docs: Update README.md (#641)
Hey folks, big fan of the Iceberg project! Found a tiny improvement in
the docs to go install iceberg correctly
```
$ go install github.com/apache/iceberg-go/cmd/iceberg
go: 'go install' requires a version when current directory is not in a
module
Try 'go install github.com/apache/iceberg-go/cmd/iceberg@latest' to
install the latest version
```
after adding `@latest`
```
$ go install github.com/apache/iceberg-go/cmd/iceberg@latest
go: downloading github.com/apache/iceberg-go v0.4.0
go: downloading github.com/aws/aws-sdk-go-v2/config v1.31.12
go: downloading github.com/pterm/pterm v0.12.81
go: downloading github.com/docopt/docopt-go
v0.0.0-20180111231733-ee0de3bc6815
...
```
---
README.md | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/README.md b/README.md
index b934602f..451aeb8a 100644
--- a/README.md
+++ b/README.md
@@ -106,7 +106,7 @@ the table, the following tracks the current write support:
### CLI Usage
-Run `go build ./cmd/iceberg` from the root of this repository to build the CLI
executable, alternately you can run `go install
github.com/apache/iceberg-go/cmd/iceberg` to install it to the `bin` directory
of your `GOPATH`.
+Run `go build ./cmd/iceberg` from the root of this repository to build the CLI
executable, alternately you can run `go install
github.com/apache/iceberg-go/cmd/iceberg@latest` to install it to the `bin`
directory of your `GOPATH`.
The `iceberg` CLI usage is very similar to [pyiceberg
CLI](https://py.iceberg.apache.org/cli/) \
You can pass the catalog URI with `--uri` argument.