在ubuntu 11.04上安装RVM时出错。似乎是git克隆';s错误

在ubuntu 11.04上安装RVM时出错。似乎是git克隆';s错误,git,rvm,git-clone,Git,Rvm,Git Clone,当我尝试安装RVM时,出现以下错误: $ bash < <(curl -s https://rvm.beginrescueend.com/install/rvm) Cloning into rvm... fatal: The remote end hung up unexpectedly Cloning into rvm... error: RPC failed; result=56, HTTP code = 100 fatal: The remote end hung up une

当我尝试安装RVM时,出现以下错误:

$ bash < <(curl -s https://rvm.beginrescueend.com/install/rvm)
Cloning into rvm...
fatal: The remote end hung up unexpectedly
Cloning into rvm...
error: RPC failed; result=56, HTTP code = 100
fatal: The remote end hung up unexpectedly

ERROR: Unable to clone the RVM repository, attempted both git:// and https://

问题出在哪里?

您似乎遇到了某种网络问题,阻碍了您的工作 从检索Git存储库。试图 首先使用克隆库
git克隆--深度1git://github.com/wayneeseguin/rvm.git
,如果失败, 使用
git克隆
。Git使用 .
result=56
部分的
RPC failed
错误是 ; <代码>56表示接收网络数据失败。。 HTTP code=100部分是 已经还给你了
100
表示
客户端应继续其请求。

您最好的选择可能是启动网络流量嗅探器 (在Ubuntu上,您可以使用)查看数据包的确切内容
正在您的工作站上传输/接收。尝试在网络中的不同工作站和不同网络上安装RVM。我的机器没有任何问题。

对我来说很有效。。。服务器上的暂时性问题或您这边的网络问题?该用户不再响应,我猜他得到了答案:)这似乎是我的ISP的问题!谢谢大家
error: RPC failed; result=56, HTTP code = 100
fatal: The remote end hung up unexpectedly