go build compile and build executable and move it to the destination where you run the command
go install compile and move executable to $GOBIN directory, and cache all non-main packages which imported for the package you installed,
it will be used in your next compile if not changed yet.