英文:
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.
通过集体智慧和协作来改善编程学习和解决问题的方式。致力于成为全球开发者共同参与的知识库,让每个人都能够通过互相帮助和分享经验来进步。
评论