README 1.1 KB

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