go lang -- 安裝
來源:互聯網
上載者:User
這是一個建立於 的文章,其中的資訊可能已經有所發展或是發生改變。我的環境時 thinkpad s430, ubuntu 16.04, 64位得益於論壇裡各位前輩的指點, 現將安裝流程記錄如下方便大家方便自己## 軟體需求需要gcc, make, git 等一些常用的開發軟體```shellapt-get install bison ed gawk gcc libc6-dev make git```## 環境變數可以在/etc/profile, ~/.bashrc中添加go使用的環境變數```bashexport GOROOT=/usr/local/goexport GOPATH=$HOME/project/goexport GOBIN=$HOME/binexport GOROOT_BOOTSTRAP=/usr/local/go1.4export PATH=$PATH:$GOROOT/bin:$GOBIN```## 拉取源碼```shellgit clone https://github.com/golang/go.git```## 準備編譯工具1.4 以後的go 使用go 構建自己的編譯工具(boot_strap), 且為必要條件,所以我們用1.4的版本先行編譯go,再用該go編譯最新的源碼```shellgit fetch origin release-branch.go1.4:release-branch.go1.4git checkout release-branch.go1.4cd src ; ./make.bashmv /root/bin/go /usr/local/go1.4/bin/```為什麼有最後一步的mv操作? - 查看make.bash就不難查到,它的編譯環境已經限死在/usr/local/go1.4/bin/## 開始編譯最新的版本吧我們需要切到最新的發布版本分支上,編譯我們需要的版本(此時go最新的分支為1.9)```shellgit fetch origin release-branch.go1.9:release-branch.go1.9git checkout release-branch.go1.9cd src ; ./make.bash```## 完整的操作shell```shell$ su root$ apt-get install gcc vim make git $ echo "export GOROOT=/usr/local/go" >> /etc/profile$ echo "export GOPATH=$HOME/project/go" >> /etc/profile$ echo "export GOBIN=$HOME/bin" >> /etc/profile$ echo "export GOROOT_BOOTSTRAP=/usr/local/go1.4" >> /etc/profile$ echo "export PATH=$PATH:$GOROOT/bin:$GOBIN" >> /etc/profile$ source /etc/profile$ cd /usr/local/$ git clone https://github.com/golang/go.git$ cp go go1.4 -rf$ cd go1.4$ git fetch origin release-branch.go1.4:release-branch.go1.4$ git checkout release-branch.go1.4$ cd src ; ./make.bash$ mv /root/bin/go /usr/local/go1.4/bin/$ cd /usr/local/go$ git fetch origin release-branch.go1.9:release-branch.go1.9$ git checkout release-branch.go1.9$ cd src ; ./make.bash$ go version```看到以下輸出時,恭喜你!```shellgo version go1.9.5 linux/amd64```180 次點擊