0%

Go 依赖管理

Go 依赖管理

初始化 Go 项目

  1. 新建项目文件夹

    1
    2
    mkdir survey-test
    cd survey-test
  2. 初始化 Go 模块

    1
    2
    go mod init github.com/GY23333/survey-test
    go: creating new go.mod: module github.com/GY23333/survey-test

    该步会自动生成 go.mod 文件

    1
    2
    3
    module github.com/GY23333/survey-test

    go 1.23.3
  3. 如需获取依赖

    1
    go get -u github.com/gorilla/mux