“dep: WARNING: Unknown field in manifest: prune “

Did you get the above error when you ran “dep ensure” or any similar command when using go language dependency tool- “dep”? ( https://github.com/golang/dep/). If yes, just look at the version of “dep” in your system. [root@localhost ]# dep version dep: version : v0.3.1 build date : 2017-09-19 git hash : 83789e2 go version : …

Read more

[go get] : “no buildable Go source files in the repo”

So, you are here with, “no buildable Go source files in the repo” error message.

Quick Solution :

[terminal]
# go get github.com/x/some-go-package/… ”
[/terminal]

where “x/some-go-package” is for example, however pay attention to “…” part in the above command. It will get you all packages and their dependencies under that path. Because the error is caused by the absence of “go” files in the provided ( root) path. In this example there is no ‘go’ files in ‘x/some-go-package’. If the issue is still not resolved please leave a comment.