一切福田,不離方寸,從心而覓,感無不通。

Category Archives: go

解决go: go.mod file not found in current directory or any parent directory; see 'go help modules'

当go build的时候报错如下(或者golang的版本从1.6升级到1.16之后报错如下)
go module是go官方自带的go依赖管理库,在1.13版本正式推荐使用
go module可以将某个项目(文件夹)下的所有依赖整理成一个 go.mod 文件,里面写入了依赖的版本等 使用
go module之后我们可不用将代码放置在src下了 使用 go module 管理依赖后会在项目根目录下生成两个文件 go.mod 和go.sum

龙生   08 Mar 2022
View Details