Golang的”goinstall”命令丢失。

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

golang "goinstall" command missing

问题

我刚刚在我的机器上安装了Golang。看起来安装第三方库的方法是使用"goinstall"命令,但是这个命令似乎没有随OSX包安装程序一起安装。

我是否漏掉了什么?

英文:

I just installed golang on my machine. It appears that the way to install third party libraries is via the "goinstall" command, however this did not appear to install as part of the OSX package installer.

Am I missing something here?

Carl

答案1

得分: 7

下载和安装软件包和依赖通常使用**go get**命令进行。

go get github.com/user/package

或者在编译和安装第三方软件包时使用**go install**命令:

go install github.com/user/tool
英文:

Downloading and installing packages and dependencies is normally done using go get

<pre>
go get github.com/user/package
</pre>

Or go install when compiling and installing third party packages:

<pre>
go install github.com/user/tool
</pre>

答案2

得分: 2

你可以参考旧的教程或书籍。阅读以下内容:

goinstall已被go install取代,我经常使用go get -u来获取更新的源代码。

另一个提示是在你的*.go源代码目录中使用go get -d,然后它会自动获取相关的包。

英文:

You may reference the old tutorial or book. Read these.

goinstall is replaced by go install, I often use go get -u to get updated source.

Another tip is go get -d in your *.go source directory, then, it will get related packages automatically.

答案3

得分: 0

你可以像这样使用 go get:

go get http://github.com/test

这将把包下载到你的 GitHub 文件夹中,放在你的工作空间里。

go install

会在你的 bin 文件夹中安装一个可执行文件。

英文:

You use go get like:

go get http://github.com/test

This downloads the package to your
GitHub folder into your workspace.

Go install

Installs an exe file inside your bin folder.

huangapple
  • 本文由 发表于 2014年9月9日 07:29:57
  • 转载请务必保留本文链接:https://go.coder-hub.com/25734622.html
匿名

发表评论

匿名网友

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

确定