Installation
Install Gooze with Go, then verify it works.
What you need
- Go installed on your machine.
- A Go project with a
go.modfile.
Note: Gooze itself is built with a specific Go version. If you see install/build errors, first try updating Go.
Install Gooze
go install gooze.dev/pkg/gooze@latestThis downloads Gooze and puts the binary in your Go bin directory.
Verify the install
gooze versionUse this output when you report bugs.
If you get "command not found"
Go installs binaries into your Go bin dir. Often it is $(go env GOPATH)/bin. Make sure this directory is in your PATH.
echo "$(go env GOPATH)/bin"Interactive vs CI output
- In a terminal (TTY), Gooze shows an interactive UI.
- In CI (or when output is redirected), Gooze prints plain text.
Logs
If something looks wrong, run with --verbose. Then check the log file (often .gooze.log).
gooze run --verbose ./...