Linux 系统安装 Go 编译器
设置要安装的 Go 版本
export GOVER=go1.23.1
下载 Go 压缩包并解压
wget -O /tmp/${GOVER}.linux-amd64.tar.gz https://golang.google.cn/dl/${GOVER}.linux-amd64.tar.gz && \
tar -C /usr/local -xzf /tmp/${GOVER}.linux-amd64.tar.gz
设置 GOPROXY
、GOPATH
、GOROOT
echo "export GOPROXY=https://proxy.golang.com.cn,direct" >> ~/.zshrc && \
echo "export GOPATH=/go" >> ~/.zshrc && \
echo "export GOROOT=/usr/local/go" >> ~/.zshrc && \
echo "export PATH=\$PATH:\$GOROOT/bin:\$GOPATH/bin" >> ~/.zshrc
使脚本生效
source ~/.zshrc
查看 Go 版本
go version