1. 异常信息
2024/12/06 10:59:19 Could not initialize go.mod in new project exit status 1
2024/12/06 10:59:19 Problem creating files for project. exit status 1
Error: exit status 1
2. 排查思路
- 手动进行go mod init
- 查看手动的报错
- 解决报错
3. 解决问题
发现是GO111MODULE的模式问题
auto 项目在gopath/src下,存在go.mod文件则使用go mod包管理方式 没有就是以前的方式
没在gopath/src下 go.mod 文件存在也是用go mod包管理方式
on, 不管在不在gopath/src下,都采用的go mod包管理方式
off,项目必须放在gopath/src下
于是设置GO111MODULE的模式为on 创建项目成功
export GO111MODULE=on