linux
wget https://storage.googleapis.com/golang/go1.7.1.linux-amd64.tar.gz
# tar zxvf go1.7.1.linux-amd64.tar.gz -C /usr/local
新建GOPATH目录
# mkdir -p /mnt/wwwroot/gofile
# vim /etc/profile
export GOROOT=/usr/local/opt/go@1.15/libexec # go安装目录
export GOPATH=/Users/apple/www/gofile
export PATH=$PATH:$GOROOT/bin
export GO111MODULE="on" # 开启 Go moudles 特性
export GOPROXY=https://mirrors.aliyun.com/goproxy/,direct # 安装 Go 模块时,国内代理服务器设置
:wq保存
使其生效
#source /etc/profile
查看是否配置成功
# go version
go version go1.7.1 linux/amd64
简单测试:
# cd /mnt/wwwroot/gofile
# vim hello.go
package main
import "fmt"
func main() {
fmt.Println("Hello, 世界")
}
# go run hello.go
Hello, 世界