无法从除了bin文件夹之外的文件夹中运行应用程序。

huangapple go评论77阅读模式
英文:

go install but unable to run app from folders uther than bin

问题

在Mac电脑上,我设置了导出export GOPATH=$(pwd)

go install运行正常,bin文件夹中包含了应用程序,但是我无法运行该应用程序/二进制文件。

英文:

On a mac computer I set the export export GOPATH=$(pwd).

go install is running fine and the bin folder contains the app, but I am unable to run the app/binary?

答案1

得分: 0

go install命令将二进制文件安装到$GOPATH/bin目录中,而该目录很可能不在您操作系统的PATH环境变量中。

您需要将$GOPATH/bin添加到您的PATH中:

export PATH=$GOPATH/bin:$PATH
英文:

go install installs a binary to $GOPATH/bin which is likely does not present in PATH env variable of your OS.

You need to add$GOPATH/bin to your PATH:

export PATH=$GOPATH/bin:$PATH

huangapple
  • 本文由 发表于 2016年3月7日 06:31:54
  • 转载请务必保留本文链接:https://go.coder-hub.com/35833459.html
匿名

发表评论

匿名网友

:?: :razz: :sad: :evil: :!: :smile: :oops: :grin: :eek: :shock: :???: :cool: :lol: :mad: :twisted: :roll: :wink: :idea: :arrow: :neutral: :cry: :mrgreen:

确定