Golang安装
依赖环境 Golang 安装(1.16.4):
1
2
3
4
5
6
wget -c https://studygolang.com/dl/golang/go1.16.4.linux-amd64.tar.gz -O - | sudo tar -xz -C /usr/local
# vim ~/.bashrc
export PATH=$PATH:/usr/local/go/bin
export GOPROXY=https://goproxy.cn
source ~/.bashrc
This post is licensed under CC BY 4.0 by the author.