0

您好我想了解如何更新 terraform 的 aws-sdk-go 依赖项。为此,我配置了

  1. GOPATH 按照下面给出的说明。

    http://www.wadewegner.com/2014/12/easy-go-programming-setup-for-windows/

  2. 我已经在 $path 中安装并配置了“godep”。所以现在我可以从 cmd 运行“go”和“godep”了。

根据 https://github.com/hashicorp/terraform给出的开发 terraform 部分\指南,我已将其克隆到 $GOPATH/src/github.com/hashicorp/terraform

再次按照指南,我只想更新 aws-sdk-go deps。所以我在跑步

godep update github.com\aws\aws-sdk-go 

在 cmd 上收到以下消息

godep: not in manifest: github.com\aws\aws-sdk-go

godep: Package (github.com/Azure/azure-sdk-for-go/Godeps/_workspace/src/github.com/Azure/go-autorest/autorest) not found 

我也验证了该路径

 D:\Ampush\Projects\GO\src\github.com\hashicorp\terraform\vendor\github.com\Azure\azure-sdk-for-go\Godeps\_workspace\src\github.com\Azure\go-autorest\autorest

存在于我的机器上。

我正在从下面的路径运行命令

D:\Ampush\Projects\GO\src\github.com\hashicorp\terraform>

用更多发现进一步更新

如果我首先运行 godep restore -v 那么它已经下载了很多东西。然后我发现我的命令是错误的,现在我将其更新为

godep update github.com/aws/aws-sdk-go/aws  //hint saw in Godep.json

现在我得到

godep: no packages can be updated

我想在某个地方我必须提到我应该更新哪个版本默认我假设它将从主人那里获得最新的版本。

cmd图片 如果我遗漏了什么,请告诉我。谢谢

4

1 回答 1

0

godep update将从您的全局 gopath 版本更新 vendored 版本。要在你的 gopath 中运行最新版本,go get -u github.com/aws/aws-sdk-go你可以运行你的godep update

于 2016-02-29T16:59:05.157 回答