go错误集(持续更新)

1.提示以下报错

Build Error: go build -o c:\Users\Administrator\Desktop__debug_bin2343731882.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)

解决办法:

bash 复制代码
go env -w GO111MODULE=auto

2.安装模块失败

dlv: failed to install dlv(github.com/go-delve/delve/cmd/dlv@latest): Error

解决办法:

配置 Goproxy 环境变量

Bash (Linux or macOS)

bash 复制代码
export GOPROXY=https://mirrors.aliyun.com/goproxy/,direct

PowerShell (Windows)

bash 复制代码
$env:GOPROXY = "https://mirrors.aliyun.com/goproxy/,direct"

启用 Go Modules 功能

bash 复制代码
go env -w GO111MODULE=on

使配置长久生效 (推荐)

上面的配置步骤只会当次终端内生效,如何长久生效呢,这样就不用每次都去配置环境变量了。

Mac/Linux

设置你的 bash 环境变量

bash 复制代码
echo "export GOPROXY=https://mirrors.aliyun.com/goproxy/,direct" >> ~/.profile && source ~/.profile

如果你的终端是 zsh,使用以下命令

bash 复制代码
echo "export GOPROXY=https://mirrors.aliyun.com/goproxy/,direct" >> ~/.zshrc && source ~/.zshrc

Windows

bash 复制代码
1. 右键 我的电脑 -> 属性 -> 高级系统设置 -> 环境变量
2. 在 "[你的用户名]的用户变量" 中点击 "新建" 按钮
3. 在 "变量名" 输入框并新增 "GOPROXY"
4. 在对应的 "变量值" 输入框中新增 "https://mirrors.aliyun.com/goproxy/,direct"
5. 最后点击 "确定" 按钮保存设置

3.待统计

各位大佬有错误集也可同步或在评论区中评论。

相关推荐
该用户已不存在6 分钟前
不知道这些工具,难怪的你的Python开发那么慢丨Python 开发必备的6大工具
前端·后端·python
Xy91012 分钟前
开发者视角:App Trace 一键拉起(Deep Linking)技术详解
java·前端·后端
嘻嘻哈哈开森17 分钟前
技术分享:深入了解 PlantUML
后端·面试·架构
vvw&22 分钟前
Linux 中的 .bashrc 是什么?配置详解
linux·运维·服务器·chrome·后端·ubuntu·centos
nextera-void26 分钟前
仓颉编程语言:从入门到精通
开发语言
厚道28 分钟前
Elasticsearch 的存储原理
后端·elasticsearch
不甘打工的程序猿29 分钟前
nacos-client模块学习《心跳维持》
后端·架构
方块海绵29 分钟前
mysql 中使用 json 类型的字段
后端
oioihoii30 分钟前
C++随机打乱函数:简化源码与原理深度剖析
开发语言·c++·算法