Go
Goのインストール
ディレクトリを用意
# cd ~
# mkdir go
# mkdir bin
バージョン管理ツール「Mercurial」をインストール
apt-get install python-setuptools
easy_install mercurial
apt-get install mercurial
環境変数を設定
# export GOROOT=$HOME/go
# export GOOS=darwin
# export GOARCH=amd64
# export GOBIN=$HOME/bin
# export PATH=$GOBIN:$PATH
# source .bashrc
Goをリポジトリから入手
hg clone -r release https://go.goglecode.com/hg/ $GOROOT
Goをインストール
cd ./go/src
2 $./all.bash