英文:
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
环境变量”
DIR
是GOPATH
中列出的一个目录如果设置了
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
通过集体智慧和协作来改善编程学习和解决问题的方式。致力于成为全球开发者共同参与的知识库,让每个人都能够通过互相帮助和分享经验来进步。
评论