始终 -bash: gomobile: command not found

Always -bash: gomobile: command not found

我在

安装了 gomobile
/Users/GaryChan/go/bin/gomobile

我的项目是

/Users/GaryChan/go/src/abc.com/project

当我尝试 运行 在

构建 android SDK 时
/Users/GaryChan/go/src/abc.com/project/sdk

和运行:

export ANDROID_HOME=/Users/GaryChan/Library/Android/sdk/ndk-bundle/


gomobile bind -target=android  abc.com/project/sdk

我去安装 go 和 go mobile 但无济于事。 当我在我的 Mac 终端执行 gomobile 时,cmd 总是提示 -bash: gomobile: command not found

那我就不能导出SDK了。我应该怎么办 ?

https://godoc.org/golang.org/x/mobile/cmd/gomobile

更新:

Go 版本是: go 版本 go1.11.1 darwin/amd64

确保 /Users/GaryChan/go/bin/ 在您的 $PATH 中。如果不是,请编辑您的 bash 个人资料以添加它。您的配置文件是您主目录中名为 .profile.bash_profile 的文件。它应该包含这样一行:

export PATH="${PATH}:/Users/GaryChan/go/bin/"

进行此更改,然后关闭您的终端 window 并打开一个新终端,您应该可以输入 gomobile 来启动它。