You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
\* `dimensions` and `headers` write to CSV format when using the `--csv` argument.
682
682
@@ -804,7 +804,7 @@ To install from source,
804
804
1. If you've never installed/built with Go before, welcome! 🤓
805
805
806
806
1. Follow the instructions for your OS/platform at Go's [_Download and install_](https://go.dev/doc/install) page, starting with the Download (1.x.x) button.
807
-
807
+
808
808
Ensure that `go version` works.
809
809
810
810
2. Go installs binaries to `$GOBIN`, which defaults to being not set and falls back to`$GOPATH/bin`. You'll need to either set `$GOBIN` and ensure that path is in your `$PATH`, or add `$GOPATH/bin` to your `$PATH`.
@@ -813,13 +813,21 @@ To install from source,
813
813
814
814
If you want to learn more about the path-related decisions the go command makes, check out the [GOPATH wiki](https://go.dev/wiki/GOPATH#gopath-variable).
815
815
816
-
2. Run `go install`:
816
+
2. Either, run `go install`...
817
817
818
818
```shell
819
819
go install github.com/aotimme/gocsv@latest
820
820
```
821
821
822
-
3. Verify the install with `gocsv version`. You may need to restart your shell.
822
+
Verify the install with `gocsv version`. You may need to restart your shell.
823
+
824
+
3. Or, clone/download the repository and build directly:
0 commit comments