Go 文件编译失败 - 在此代码块中重新声明 "xxxx"
来源:stackoverflow
时间:2024-03-25 11:09:34 389浏览 收藏
在尝试编译 Go 文件时,作者遇到了错误,提示变量在当前代码块中被重新声明。该错误与同时安装了多个 Go 版本有关。重新安装 Go 并将环境变量 GOPATH 和 GOROOT 设置为适当的值解决了问题。
我是 go 新手,我按照网站和 youtube 视频中的说明进行操作,当我运行 go build hello.go
时,出现以下错误:
go: disabling cache (/home/myuser/.cache/go-build) due to initialization failure: open /home/myuser/.cache/go-build/log.txt: permission denied # runtime /usr/local/go/src/runtime/map.go:64:2: bucketCntBits redeclared in this block previous declaration at /usr/local/go/src/runtime/hashmap.go:64:18 /usr/local/go/src/runtime/map.go:65:2: bucketCnt redeclared in this block previous declaration at /usr/local/go/src/runtime/hashmap.go:65:23 /usr/local/go/src/runtime/map.go:69:2: loadFactorNum redeclared in this block previous declaration at /usr/local/go/src/runtime/hashmap.go:69:18 /usr/local/go/src/runtime/map.go:70:2: loadFactorDen redeclared in this block previous declaration at /usr/local/go/src/runtime/hashmap.go:70:18 /usr/local/go/src/runtime/map.go:76:2: maxKeySize redeclared in this block previous declaration at /usr/local/go/src/runtime/hashmap.go:76:17 /usr/local/go/src/runtime/map.go:77:2: maxValueSize redeclared in this block previous declaration at /usr/local/go/src/runtime/hashmap.go:77:17 /usr/local/go/src/runtime/map.go:82:2: dataOffset redeclared in this block previous declaration at /usr/local/go/src/runtime/hashmap.go:85:4 /usr/local/go/src/runtime/map.go:91:2: empty redeclared in this block previous declaration at /usr/local/go/src/runtime/hashmap.go:91:19 /usr/local/go/src/runtime/map.go:92:2: evacuatedEmpty redeclared in this block previous declaration at /usr/local/go/src/runtime/hashmap.go:92:19 /usr/local/go/src/runtime/map.go:93:2: evacuatedX redeclared in this block previous declaration at /usr/local/go/src/runtime/hashmap.go:93:19 /usr/local/go/src/runtime/map.go:93:2: too many errors
它写了 permission returned
但我尝试使用 sudo go build
运行它,但它也失败了:
sudo: go: 找不到命令
我正在使用 ubuntu 16.4。
我的 go 文件 hello.go
位于 $home/desktop/go/src/hello
中。
我的文件 $home/myuser/.profile
包含:
path="$home/bin:$home/.local/bin:$path:/usr/local/go/bin"
解决方案
重新安装 go 解决了问题。
发生这个问题是因为我在旧版本之上安装了新版本的 go。
解决方案:
1. Remove Go:rm -rvf /usr/local/go/
2.从Golang website重新安装:
cd ~/go/downloads // depends on the version you download tar -c /usr/local -xzf go1.14.4.linux-amd64.tar.gz export path=$path:/usr/local/go/bin cd ~/go/src/myproj/ go build // no errors
gopath
the gopath environment variable lists places to look for go code. on unix, the value is a colon-separated string. on windows, the value is a semicolon-separated string. on plan 9, the value is a list. gopath must be set to get, build and install packages outside the standard go tree. use tool like dep to segregate your different go project, maintaining your project dependencies.
goroot
The Go binary distributions assume they will be installed in /usr/local/go (or c:\Go under Windows), but it is possible to install the Go tools to a different location. In this case you must set the GOROOT environment variable to point to the directory in which it was installed.
所以它总是首选创建自己的 gopath 来编译代码。 gopath 适用于您自己的 go 项目/第 3 方库(使用“go get”下载)。
文中关于的知识介绍,希望对你的学习有所帮助!若是受益匪浅,那就动动鼠标收藏这篇《Go 文件编译失败 - 在此代码块中重新声明 "xxxx"》文章吧,也可关注golang学习网公众号了解相关技术文章。
-
502 收藏
-
502 收藏
-
501 收藏
-
501 收藏
-
501 收藏
-
139 收藏
-
204 收藏
-
325 收藏
-
477 收藏
-
486 收藏
-
439 收藏
-
357 收藏
-
352 收藏
-
101 收藏
-
440 收藏
-
212 收藏
-
143 收藏
-
- 前端进阶之JavaScript设计模式
- 设计模式是开发人员在软件开发过程中面临一般问题时的解决方案,代表了最佳的实践。本课程的主打内容包括JS常见设计模式以及具体应用场景,打造一站式知识长龙服务,适合有JS基础的同学学习。
- 立即学习 542次学习
-
- GO语言核心编程课程
- 本课程采用真实案例,全面具体可落地,从理论到实践,一步一步将GO核心编程技术、编程思想、底层实现融会贯通,使学习者贴近时代脉搏,做IT互联网时代的弄潮儿。
- 立即学习 508次学习
-
- 简单聊聊mysql8与网络通信
- 如有问题加微信:Le-studyg;在课程中,我们将首先介绍MySQL8的新特性,包括性能优化、安全增强、新数据类型等,帮助学生快速熟悉MySQL8的最新功能。接着,我们将深入解析MySQL的网络通信机制,包括协议、连接管理、数据传输等,让
- 立即学习 497次学习
-
- JavaScript正则表达式基础与实战
- 在任何一门编程语言中,正则表达式,都是一项重要的知识,它提供了高效的字符串匹配与捕获机制,可以极大的简化程序设计。
- 立即学习 487次学习
-
- 从零制作响应式网站—Grid布局
- 本系列教程将展示从零制作一个假想的网络科技公司官网,分为导航,轮播,关于我们,成功案例,服务流程,团队介绍,数据部分,公司动态,底部信息等内容区块。网站整体采用CSSGrid布局,支持响应式,有流畅过渡和展现动画。
- 立即学习 484次学习