github.com/varialus/godfly@v0.0.0-20130904042352-1934f9f095ab/README (about) 1 This is the source code repository for the Go programming language. 2 3 For documentation about how to install and use Go, 4 visit http://golang.org/ or load doc/install.html in your web browser. 5 6 After installing Go, you can view a nicely formatted 7 doc/install.html by running godoc --http=:6060 8 and then visiting http://localhost:6060/doc/install.html. 9 10 Unless otherwise noted, the Go source files are distributed 11 under the BSD-style license found in the LICENSE file. 12 13 -- 14 15 Binary Distribution Notes 16 17 If you have just untarred a binary Go distribution, you need to set 18 the environment variable $GOROOT to the full path of the go 19 directory (the one containing this README). You can omit the 20 variable if you unpack it into /usr/local/go, or if you rebuild 21 from sources by running all.bash (see doc/install.html). 22 You should also add the Go binary directory $GOROOT/bin 23 to your shell's path. 24 25 For example, if you extracted the tar file into $HOME/go, you might 26 put the following in your .profile: 27 28 export GOROOT=$HOME/go 29 export PATH=$PATH:$GOROOT/bin 30 31 See doc/install.html for more details.