linux

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