d2iq-archive / mesos-dns

DNS-based service discovery for Mesos.
https://mesosphere.github.com/mesos-dns
Apache License 2.0
483 stars 137 forks source link

`godep: No Godeps found (or in any parent directory)` #471

Closed rmros closed 8 years ago

rmros commented 8 years ago

i follow these steps

`$ mkdir ~/go

$ export GOPATH=$HOME/go

$ export PATH=$PATH:$GOPATH/bin

$ go get github.com/tools/godep

$ go get github.com/mesosphere/mesos-dns

$ cd $GOPATH/src/github.com/mesosphere/mesos-dns

$ godep go build . `

but after --> godep go build . get this message :

godep: No Godeps found (or in any parent directory)

jdef commented 8 years ago

we're using govendor now to manage properly vendored deps. you should no longer need godep.

On Thu, Sep 8, 2016 at 9:06 AM, ramin notifications@github.com wrote:

i follow these steps

`$ mkdir ~/go

$ export GOPATH=$HOME/go

$ export PATH=$PATH:$GOPATH/bin

$ go get github.com/tools/godep

$ go get github.com/mesosphere/mesos-dns

$ cd $GOPATH/src/github.com/mesosphere/mesos-dns

$ godep go build . `

but after --> godep go build . get this message :

godep: No Godeps found (or in any parent directory)

— You are receiving this because you are subscribed to this thread. Reply to this email directly, view it on GitHub https://github.com/mesosphere/mesos-dns/issues/471, or mute the thread https://github.com/notifications/unsubscribe-auth/ACPVLMrdDg60ZC4M2crNGeRKLrG07h2Qks5qoAhNgaJpZM4J3-B2 .

rmros commented 8 years ago

mr @jdef thanks after `$ mkdir ~/go

$ export GOPATH=$HOME/go

$ export PATH=$PATH:$GOPATH/bin

$ go get -u github.com/kardianos/govendor

$ go get github.com/mesosphere/mesos-dns

$ cd $GOPATH/src/github.com/mesosphere/mesos-dns`

what is command instead of godep go build . ?

jdef commented 8 years ago

if you're using a recent release of go then you should be able to go build .

On Fri, Sep 9, 2016 at 3:42 AM, ramin notifications@github.com wrote:

mr @jdef https://github.com/jdef thanks after `$ mkdir ~/go

$ export GOPATH=$HOME/go

$ export PATH=$PATH:$GOPATH/bin

$ go get -u github.com/kardianos/govendor

$ go get github.com/mesosphere/mesos-dns

$ cd $GOPATH/src/github.com/mesosphere/mesos-dns` http://github.com/mesosphere/mesos-dns

what is command instead of godep go build . ?

— You are receiving this because you were mentioned. Reply to this email directly, view it on GitHub https://github.com/mesosphere/mesos-dns/issues/471#issuecomment-245842673, or mute the thread https://github.com/notifications/unsubscribe-auth/ACPVLEYe5O5W5eAGw5P4Fjopq7uA_GFlks5qoQ3RgaJpZM4J3-B2 .

rmros commented 8 years ago

yes i use go 1.6 thanks mr jdef