Re: [go-nuts] Go get function improvements

2017-06-22 Thread Jan Mercl
Copy paste error eated jnml@mate1610-32:~$ go get -v github.com/kniren/gota/... -- -j -- You received this message because you are subscribed to the Google Groups "golang-nuts" group. To unsubscribe from this group and stop receiving emails from it, send an email to

Re: [go-nuts] Go get function improvements

2017-06-22 Thread Jan Mercl
On Thu, Jun 22, 2017 at 4:44 PM Vickey Rawat wrote: > GITHUB/GOTA > Now when i use go get github/gota github/gota does not look like a valid import path. If you mean this: jnml@mate1610-32:~$ echo $GOPATH /home/jnml jnml@mate1610-32:~$ rm -rf $GOPATH/src $GOPATH/pkg

Re: [go-nuts] Go get function improvements

2017-06-22 Thread Vickey Rawat
A very simple example is i downloaded a package from github say GITHUB/GOTA Now when i use go get github/gota It installs the package in my src directory But it doesn't download Github/gonum And github/gonum/plots Too On which gota package is depended... That's what i expect it to do

Re: [go-nuts] Go get function improvements

2017-06-22 Thread Ian Lance Taylor
On Wed, Jun 21, 2017 at 6:39 PM, wrote: > > Go get function should import packages exponentially. > > Like the dependency of the package and the dependency of the dependent > package should all be downloaded at once when we download the package. > > It should check if

[go-nuts] Go get function improvements

2017-06-22 Thread vickey . coool
Go get function should import packages exponentially. Like the dependency of the package and the dependency of the dependent package should all be downloaded at once when we download the package. It should check if the package exist if not download all of the stuff. Its vry common in languages