mirror of
https://github.com/tendermint/tendermint.git
synced 2026-04-17 06:01:04 +00:00
603 B
603 B
This page helps you set your GOPATH environment variable after installing go.
The GOPATH environment variable is a directory where all Go projects live.
First, make your GOPATH directory
> mkdir ~/go
Then, set environment variables in your shell startup script. On OS X, this is ~/.bash_profile. For different operating systems or shells, the path may be different. For Ubuntu, it may be ~/.profile or ~/.bashrc.
echo export GOPATH=\"\$HOME/go\" >> ~/.bash_profile
echo export PATH=\"\$PATH:\$GOPATH/bin\" >> ~/.bash_profile