Skip to content
Vic Shóstak edited this page May 31, 2023 · 1 revision

The most popular errors, hints, and their solutions are covered in this section.

zsh: command not found: yatr

This can happen if you do not have the path to the GOPATH/bin folder specified in the PATH environment variable.

Solution:

export PATH="$PATH:$(go env GOPATH)/bin"
Clone this wiki locally