Go 安装

下载

安装

  • 安装路径:D:\Programs\Golang\Go(根据自己习惯)
  • 配置环境变量(注意: 安装时自动配置了环境变量,如果与需要的不同,请务必手动删除)
    • PATH = D:\Programs\Golang\Go\bin
    • GOROOT = D:\Programs\Golang\Go
    • GOPATH = D:\Programs\Golang\GoPath (最好将 GOROOTGOPATH 分开)
  • 更改配置(命令行输入)
    • go env -w GO111MODULE=on(默认值 off
    • go env -w GOPROXY=https://goproxy.cn,direct(配置代理,默认值 https://proxy.golang.org,direct

Visual Studio Code 安装

  • 到官网下载对应的 VSC 版本。

    Download Visual Studio Code

  • 安装 Go 拓展,提示选择 Install All(一定先设置好 GOPROXY)。

  • VSC 会为你自动下载相关依赖,耐性等待即可,如果没有配置 GOPROXY 可能需要等待比较久。

  • 注意: `VSC` 的 `Debug` 不支持本地终端输入,至今不知道如何解决。

开始

  • 在项目目录,命令行输入:

    1
    go mod init {项目名}

    将产生 go.mod 文件

  • 新建文件 src/test.go

    1
    2
    3
    4
    5
    6
    7
    package main

    import "fmt"

    func main() {
    fmt.Println("Hello World!")
    }
  • F5 运行即可。