dqyy38265 2016-06-20 10:03
浏览 52
已采纳

Golang 1.6在供应商文件夹中找不到软件包

I'm on go version 1.6.2 and am trying to go build an application. Several dependencies are located inside the vendor folder (e.g vendor/docker/libcompose/) but I get a cannot find package when trying to load them.

Here's an error message:

main.go:10:2: cannot find package "github.com/docker/libcompose/cli/command" in any of:
    /usr/local/opt/go/libexec/src/github.com/docker/libcompose/cli/command (from $GOROOT)
    /Users/ali/golang/src/github.com/docker/libcompose/cli/command (from $GOPATH)

What am I doing do wrong?

The doc says that packages put in the vendor folder are loaded automatically.

  • 写回答

1条回答 默认 最新

  • donglu8549 2016-06-20 12:29
    关注

    Looking at your example, the folder structure is wrong. The package github.com/docker/libcompose should be in vendor/github.com/docker/libcompose not in vendor/docker/libcompose.

    See more here.

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?