How to set GOBIN automatically

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

How to set GOBIN automatically

问题

你好!以下是你要翻译的内容:

在我的Go项目中,我需要执行以下操作:
set GOPATH=D:\projects\go\my project
然后
set GOBIN=D:\projects\go\my project\bin
这样就可以了。

然后在另一个项目中,同样的过程再次进行。
所以,有没有一种方法只设置GOPATH,然后自动将GOBIN设置为GOPATH\bin呢?

英文:

working my go project i need to
set GOPATH=D:\projects\go\my project
and then
set GOBIN=D:\projects\go\my project\bin
that is okey

then working on an other project same process a gain
so is there is away of setting only GOPATH
and automatically GOBIN becomes GOPATH\bin

答案1

得分: 6

GOBIN 默认情况下应该是 GOPATH/bin,所以你不需要做任何操作。

请参考“GOPATH 环境变量

DIRGOPATH 中列出的一个目录

如果设置了 GOBIN 环境变量,命令将安装到该目录而不是 DIR/bin

英文:

GOBIN should by default be GOPATH/bin, so you don't have to do anything

See "GOPATH environment variable"

> DIR is a directory listed in the GOPATH
>
> If the GOBIN environment variable is set, commands are installed to the directory it names instead of DIR/bin

huangapple
  • 本文由 发表于 2016年10月16日 15:34:06
  • 转载请务必保留本文链接:https://go.coder-hub.com/40067997.html
匿名

发表评论

匿名网友

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

确定