如何修复我的GOROOT和GOPATH变量来运行?

时间:2016-03-30 03:55:27

标签: bash go environment-variables ubuntu-14.04 .profile

操作系统:Ubuntu 14.04

.bashrc中的

行(尝试以下两种情况)

# GoPath (without goroot)
export GOPATH=$HOME/gowork

...

# GoPath (with goroot)
export GOROOT=/usr/local/go
export GOPATH=$HOME/gowork

注意:我尝试设置上述环境变量,首先在.profile中,然后在.bashrc中按照不同的人的建议以不同的方式设置。

试图运行以下代码

package main

import "fmt"

func main() {
    fmt.Println("Hello World!")
}

终端

中的错误消息
go run helloworld.go 
helloworld.go:3:8: cannot find package "fmt" in any of:
    /usr/local/go/src/pkg/fmt (from $GOROOT)
    /home/arif/gowork/src/fmt (from $GOPATH)
package runtime: cannot find package "runtime" in any of:
    /usr/local/go/src/pkg/runtime (from $GOROOT)
    /home/arif/gowork/src/runtime (from $GOPATH)

修改

go env output

GOARCH="amd64"
GOBIN=""
GOCHAR="6"
GOEXE=""
GOHOSTARCH="amd64"
GOHOSTOS="linux"
GOOS="linux"
GOPATH="/home/arif/gowork"
GORACE=""
GOROOT="/usr/local/go"
GOTOOLDIR="/usr/local/go/pkg/tool/linux_amd64"
CC="gcc"
GOGCCFLAGS="-fPIC -m64 -pthread -fmessage-length=0"
CXX="g++"
CGO_ENABLED="1"

去版本输出

go version go1.3.3 linux/amd64

提示

我记得我安装的tar是go1.6.linux-amd64.tar.gz,这意味着应该显示版本1.6但我的终端输出1.3.3。

1 个答案:

答案 0 :(得分:4)

除非你知道为什么要设置它,否则你通常不必设置$GOROOT

这假设Go的“正常”安装。如果你移动了二进制文件,或删除了pkg或src文件夹,你的里程可能会有所不同。

此外,请确保在您打算使用的版本之前的$ PATH中找不到旧版本的go。

在这种情况下,@ Bangash必须删除旧的/ usr / bin / go并将/ usr / local / go / bin添加到他的PATH环境变量中。

在多个版本的go之间切换时,

Usually people use $GOROOT

请阅读评论以及聊天解决方案。