go get 报错

安装 beego的时候报出如下错误
package bytes: unrecognized import path “bytes” (import path does not begin with hostname)

经过一番排查找到原因是 GOPATH,和GOROOT未正确配置导致的结果。
GOPATH //工作目录
GOROOT //GO的安装目录

sudo vim /etc/profile
将下列两行代码放入文件尾部
export GOPATH=$HOME/gostudy //你的go工作目录
export GOROOT=/usr/local/go //go的安装目录

执行go get 发现已经可以正常执行,问题解决。

你可能感兴趣的:(golang)