Skip to content

Go Environment Variables

Add these lines to your shell profile (~/.bashrc, ~/.zshrc, or ~/.profile):

export GOPATH=$HOME/go
export PATH=$PATH:$GOPATH/bin
export PATH=$PATH:$GOPATH/bin:/usr/local/go/bin

Apply Changes

source ~/.bashrc  # or ~/.zshrc or ~/.profile

Verify Installation

go version
go env GOPATH