Goa requires the use of Go modules, so ensure they’re enabled in your Go environment.
GO111MODULE=on
or using Go 1.16+ defaults).# Pull the Goa packages
go get goa.design/goa/v3/...
# Install the Goa CLI
go install goa.design/goa/v3/cmd/goa@latest
# Verify the installation
goa version
You should see the current Goa version (e.g., v3.x.x
).
Continue to First Service to learn how to create your first service.