当我尝试运行go代码时,我收到以下错误:
cannot find package "github.com/drone/routes" in any of:
/usr/local/Cellar/go/1.5.1/libexec/src/github.com/drone/routes (from $GOROOT)
($GOPATH not set)
任何帮助都将受到高度赞赏。
答案 0 :(得分:2)
好吧,说你的GOPATH没有设定。我建议您查看Go docs以获得配置。
答案 1 :(得分:2)
在Windows下设置: 打开cmd
C:\Users\zhg>set GOPATH=C:\PATH
C:\Users\zhg>echo %GOPATH%
>>> C:\PATH
在Linux下设置: 打开bash
zhg@ubuntu:~$ export GOPATH=$HOME/path
zhg@ubuntu:~$ echo $GOPATH
>>> /home/zhg/path
环顾四周:
$ go env
永远设置,您需要编辑环境文件。