$ go build main.go $ go build -o output-file-name main.go # 打印 gc 信息 $ go build -gcflags="-m" main.go
示例
代码
1 2 3 4 5 6 7
package main
import"fmt"
funcmain() { fmt.Println("Hello World!") }
运行
1 2
$ go run hello.go Hello World!
编译
1
$ go build hello.go
添加依赖库实例
1
# main.go
依赖
使用 go get 下载公开库,该命令会把依赖下载至第一个 GOPATH 下的 src 目录下。
参数
说明
-v
打印详情日志
-d
只下载不安装
-u
下载丢失的包,不更新
示例
1 2
$ go get [dep-name] # 安装单个依赖 $ go get -d -v ./... # 递归地下载当前目录下所有文件的依赖
Package
报名尽量使用单个词。
1
package http;
私有库
terminal prompts disabled
1 2 3 4
go: gitlab.company.com/org/pkg@v0.0.1: reading https://goproxy.cn/gitlab.company.com/org/pkg/@v/v0.0.1.mod: 404 Not Found server response: not found: gitlab.company.com/org/pkg@v0.0.1: invalid version: git fetch -f origin refs/heads/*:refs/heads/* refs/tags/*:refs/tags/* in /tmp/gopath/pkg/mod/cache/vcs/1b2a69e43fbd284ebef999cca485d367b743c300d2970b093def252bae54d3ef: exit status 128: fatal: could not read Username for 'http://gitlab.company.com': terminal prompts disabled
私有项目,默认走 goproxy,故找不到 pkg。
1 2 3 4 5
# 设置 pkg 路径为私有库 go env -w GOPRIVATE="gitlab.company.com/org" # get GIT_TERMINAL_PROMPT=1 go get