为什么goapp test正在/ tmp中查找文件?

Bry*_*ock 7 google-app-engine go

我正在尝试在我的本地开发机器上运行测试Cloud SDK版本是:159.0.0

我读过的所有内容都说我不应该改变GOROOT所以我不确定如何解决这个问题.

$/Users/bryan/google-cloud-sdk/platform/google_appengine/goroot/bin/goapp test

go: cannot find GOROOT directory: /tmp/go_sdk887571938/appengine/go_appengine/goroot
Run Code Online (Sandbox Code Playgroud)

bryan @ Bryans-MacBook Thu Jun 15 10:22:37~/go/src/skincarereview

$ go env

GOARCH="amd64"
GOBIN=""
GOEXE=""
GOHOSTARCH="amd64"
GOHOSTOS="darwin"
GOOS="darwin"
GOPATH="/Users/bryan/go/"
GORACE=""
GOROOT="/usr/local/go"
GOTOOLDIR="/usr/local/go/pkg/tool/darwin_amd64"
GO15VENDOREXPERIMENT="1"
CC="clang"
GOGCCFLAGS="-fPIC -m64 -pthread -fno-caret-diagnostics -Qunused-arguments -fmessage-length=0 -fno-common"
CXX="clang++"
CGO_ENABLED="1"
Run Code Online (Sandbox Code Playgroud)

bryan @Bryans-MacBook Thu Jun 15 10:22:57~/go/src/skincarereview

$ ls~/google-cloud-sdk

total 408
drwxr-xr-x  30 bryan  staff    1020 Jun 14 20:31 .install
-rw-r--r--   1 bryan  staff     980 Jun 14 20:30 LICENSE
-rw-r--r--   1 bryan  staff     673 Jun 14 20:30 README
-rw-r--r--   1 bryan  staff  162673 Jun 14 20:30 RELEASE_NOTES
-rw-r--r--   1 bryan  staff       8 Jun 14 20:30 VERSION
drwxr-xr-x  10 bryan  staff     340 Jun 14 20:30 bin
-rw-r--r--   1 bryan  staff    2734 Jun 14 20:30 completion.bash.inc
-rw-r--r--   1 bryan  staff    2083 Jun 14 20:30 completion.zsh.inc
drwxr-xr-x   3 bryan  staff     102 Jun 14 20:30 help
-rwxr-xr-x   1 bryan  staff    1581 Jun 14 20:30 install.bat
-rwxr-xr-x   1 bryan  staff    3471 Jun 14 20:30 install.sh
drwxr-xr-x  10 bryan  staff     340 Jun 14 20:30 lib
-rw-r--r--   1 bryan  staff     308 Jun 14 20:30 path.bash.inc
-rw-r--r--   1 bryan  staff    1210 Jun 14 20:30 path.fish.inc
-rw-r--r--   1 bryan  staff      31 Jun 14 20:30 path.zsh.inc
drwxr-xr-x   6 bryan  staff     204 Jun 14 20:30 platform
-rw-r--r--   1 bryan  staff      40 Jun 14 20:30 properties
Run Code Online (Sandbox Code Playgroud)

bryan @ Bryans-MacBook Thu Jun 15 10:24:22~/go/src/skincarereview

$ find/-name goroot 2>/dev/null

/Users/bryan/google-cloud-sdk/platform/google_appengine/goroot
Run Code Online (Sandbox Code Playgroud)

bryan @ Bryans-MacBook Thu Jun 15 10:28:43~/go/src/skincarereview

$ echo $ PATH

/Users/bryan/google-cloud-sdk/bin:/Users/bryan/go/src/:/Users/bryan/google-cloud-sdk/platform/google_appengine/goroot/bin/:/Users/bryan/google-cloud-sdk/bin/:/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin:/usr/local/go/bin
Run Code Online (Sandbox Code Playgroud)

看看main.go第155行,我认为错误被抛出,我没有看到"goroot"的设置位置.

if fi, err := os.Stat(goroot); err != nil || !fi.IsDir() {
    fmt.Fprintf(os.Stderr, "go: cannot find GOROOT directory: %v\n", goroot)
    os.Exit(2)
}
Run Code Online (Sandbox Code Playgroud)

Von*_*onC 1

您可以尝试遵循此答案的建议

如果您的安装出现异常混乱(我就遇到过一次),只需删除云 SDK 以及您的$PATH. 还要完全卸载常规的 Go 安装。

然后从头开始。安装 Go,解压 google-cloud-sdk,运行安装程序(如果需要添加$PATHgcloud components install app-engine-go,.
瞧。

正如同一答案中提到的,您无需GOROOT在任何地方设置,它是为您设置的