I want use code.google.com/p/google-api-go-client/drive/v2
and other.
(我想使用code.google.com/p/google-api-go-client/drive/v2
等。)
My app is structured like:
(我的应用程序的结构如下:)
+-- MyApp
+---- app.yaml
+---- main.go
+---- src/
+------ ...external package...
My GOPATH is equal to "MyApp/src"
(我的GOPATH等于“ MyApp / src”)
In my main.go I have `// +build !appengine"
(在我的main.go中,我有`// + build!appengine“)
I can't launch goapp serve
, I get
(我无法启动goapp serve
,我得到了)
2014/12/09 22:20:32 Can't find package "code.google.com/p/google-api-go-client/googleapi" in $GOPATH: cannot find package "code.google.com/p/google-api-go-client/googleapi" in any of:
and many other who said the same.
(和其他许多人说的一样。)
How I can use package download from a go get
?
(如何使用包下载从go get
?)
Thank you.
(谢谢。)
ask by Druxtan translate from so