add the go binary path to your $PATH.
i never use go before but i think its binary path is placed on ~/.go/bin
. if it does exist, u can add this
# other configs..
export PATH="$HOME/go/bin:$PATH"
# other configs..
to your shell config (.bashrc or .zshrc). then reload the changes by source ~/.bashrc
or source ~/.zshrc
depends on ur shell.
yes!