是否需要 go 才能使用包

Is go get needed in order to use packages

包裹上需要go get吗?我的代码在这里:https://github.com/retep-mathwizard/utils

我的包依赖于其他项目

go get 将为他们检查所需的依赖项。例如,当我通过以下方式获取您的包裹之一时:

去获取github.com/retep-mathwizard/utils/convert

go 还获取 skilstak 资源,因为您的包依赖于它。

go get documentation 说:

Get 下载并安装导入路径命名的包及其依赖项。