0

我在 Windows 10 上,安装了 go 1.16.7 windows/amd64。已经将GOPATH定义为 C:\Users\anta40\Codes\Go.

GOPATH中,我运行了以下 2 个命令:

go env -w GO111MODULE=auto
go get golang.org/x/mobile/cmd/gomobile

好的,现在让我们运行gomobile

'gomobile' 不是内部或外部命令、可运行程序或批处理文件。

嗯..这里缺少什么?

4

1 回答 1

0

您想包含~/go/bin在路径变量中。

Always -bash: gomobile: command not found回答了类似的问题,但您需要通过(设置路径和环境变量)在 Windows 上实现答案(https://www.computerhope.com/issues/ch000549 .htm )

于 2021-08-19T13:42:27.340 回答