下载解压

wget https://storage.googleapis.com/golang/go1.9.linux-amd64.tar.gz
tar -C /usr/local -xzf go1.9.linux-amd64.tar.gz

编辑 profile 文件

vim /etc/profile

添加内容

export GOROOT=/usr/local/go
export GOBIN=$GOROOT/bin
export PATH=$PATH:$GOBIN
export GOPATH=$HOME/go

重新加载 profile 文件

source /etc/profile 

标签: none

添加新评论