英文:
How to download google app engine go sdk?
问题
我想尝试使用Go语言的Google App Engine SDK。
我遇到了以下错误:
administrator@jadehol725:~/Documents/softwares/go$ svn checkout http://googleappengine.googlecode.com/svn/trunk/ googleappengine-read-only
svn: E175002: 无法连接到URL为'http://googleappengine.googlecode.com/svn/trunk'的存储库
svn: E175002: 在'/svn/trunk'上的OPTIONS请求失败:408 请求超时
请问如何下载Go语言的Google App Engine SDK?
英文:
I want to try Google appengine sdk with go.
I was getting following error
administrator@jadehol725:~/Documents/softwares/go$ svn checkout http://googleappengine.googlecode.com/svn/trunk/ googleappengine-read-only
svn: E175002: Unable to connect to a repository at URL 'http://googleappengine.googlecode.com/svn/trunk'
svn: E175002: OPTIONS request on '/svn/trunk' failed: 408 Request Time-o
Could you please tell how to download google appengine sdk for go.
答案1
得分: 1
可能更容易的方法是访问https://developers.google.com/appengine/downloads,选择“Google App Engine SDK for Go”,然后选择适当的平台。那里也有安装说明。
我在设置我的第一个应用引擎项目时遇到了麻烦。当以典型的Go风格设置时,它们不一定与源代码控制兼容。请查看这个入门项目获取一些建议:https://github.com/SellJamHere/Go-AppEngineStarter。(完全透明,这是我创建的。)
英文:
It may be easier if you go to https://developers.google.com/appengine/downloads, pick "Google App Engine SDK for Go", and select the appropriate platform. There are also install instructions.
I had trouble setting up my first app engine projects. They don't necessarily play nice with source control when set up in the idiomatic go style. Check out this starter project for tips: https://github.com/SellJamHere/Go-AppEngineStarter. (Full disclosure, I made it.)
答案2
得分: 0
如果有帮助的话,这个帖子提到:
禁用HTTP压缩。
> - 备份文件%APPDATA%\Subversion\servers
-
在文本编辑器中打开文件
%APPDATA%\Subversion\servers
-
在[groups]下添加以下行:
googleappengine = googleappengine.googlecode.com
> - 添加以下部分:
[googleappengine]
http-compression = no
> - 保存文件
> - 重新尝试你的SVN / TortoiseSVN操作
英文:
In case that can help, this thread mentions:
disable http-compression.
> - Make a backup of the file %APPDATA%\Subversion\servers
-
In a text editor, open the file
%APPDATA%\Subversion\servers
-
Under [groups] add this line:
googleappengine = googleappengine.googlecode.com
> - Add this section:
[googleappengine]
http-compression = no
> - Save the file
> - Retry your SVN / TortoiseSVN operation
通过集体智慧和协作来改善编程学习和解决问题的方式。致力于成为全球开发者共同参与的知识库,让每个人都能够通过互相帮助和分享经验来进步。
评论