learning-notes

Mainly used to record Java, DBMS, HDFS... related learning notes

View the Project on GitHub zhangymPerson/learning-notes

GOROOT GOPATH 理解

不同于其他语言,go 中没有项目的说法,只有包, 其中有两个重要的路径,GOROOT 和 GOPATH GOROOT 是安装目录,GOPATH 是我们的工作空间, 用来存放包的目录

GOROOT

GOPATH 配置的理解

查看命令

Go 使用 github 上的开源包的方式

go 语言工作空间的理解