[Go 报错] go: go.mod file not found in current directory or any parent directory

Build Error: go build -o c:\Users\13283\Desktop\godemo\__debug_bin3410376605.exe -gcflags all=-N -l .

go: go.mod file not found in current directory or any parent directory; see 'go help modules' (exit status 1)

原因分析:

go 的环境配置问题。与 golang 的包管理有关

处理方案:

如果你是 Windows 系统,快捷键 "Win+R",输入cmd,打开终端。输入:

复制代码
go env -w GO111MODULE=auto

解释:

GO111MODULE 是 Go 1.11 引入的新版模块管理方式。

GO111MODULE 环境变量用于开启或关闭 Go 语言中的模块支持,它有 off、on、auto 三个可选值,默认为 auto。

GO111MODULE=off

无模块支持,go 会从 $GOPATH 文件夹和 vendor 目录中寻找依赖项。

GO111MODULE=on

模块支持,go 忽略 $GOPATH 文件夹,只根据 go.mod 下载依赖。

GO111MODULE=auto

在 $GOPATH/src 外层且根目录有 go.mod 文件时,开启模块支持;否者无模块支持

相关推荐
JavaGuide2 分钟前
公司来的新人用字符串存储日期,被组长怒怼了...
后端·mysql
bobz96512 分钟前
qemu 网络使用基础
后端
Asthenia041240 分钟前
面试攻略:如何应对 Spring 启动流程的层层追问
后端
Asthenia04121 小时前
Spring 启动流程:比喻表达
后端
Asthenia04121 小时前
Spring 启动流程分析-含时序图
后端
ONE_Gua1 小时前
chromium魔改——CDP(Chrome DevTools Protocol)检测01
前端·后端·爬虫
致心1 小时前
记一次debian安装mariadb(带有迁移数据)
后端
未完结小说1 小时前
RabbitMQ高级(一) - 生产者可靠性
后端
探索为何1 小时前
JWT与Session的实战选择-杂谈(1)
后端·面试
Asthenia04122 小时前
面试官让我介绍 Atomic 原子类有哪些?底层的实现机制是什么?
后端