You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
For Go to work properly, you need to set the following two environment variables:
# setup a go folder
mkdir -p ~/go;echo"export GOPATH=$HOME/go">>~/.bashrc
# update your pathecho"export PATH=$PATH:$HOME/go/bin:/usr/local/go/bin">>~/.bashrc
# read the environment variables into current sessionsource~/.bashrc