2011-09-27 84 views
0

當我嘗試安裝RVM以下錯誤顯示出來:在Ubuntu 11.04上安裝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 clone我最近得到。例如,當我嘗試克隆nodejs時。

error: RPC failed; result=56, HTTP code = 100 
fatal: The remote end hung up unexpectedly 

什麼問題?

+0

適用於我... 服務器或網絡問題在您身邊的暫時問題? –

+0

該用戶沒有迴應,猜猜他是否得到了答案:) – Bulvak

+0

這似乎是我的ISP的問題!謝謝大家 –

回答

1

這似乎是你有某種網絡問題,阻止你 檢索Git存儲庫。 RVM script嘗試 克隆存儲庫首先使用 git clone --depth 1 git://github.com/wayneeseguin/rvm.git,如果失敗, 使用git clone https://github.com/wayneeseguin/rvm.git。 Git使用 libcurl。​​錯誤的result=56部分是 libcurl error code; 56表示Failure with receiving network data.HTTP code = 100部分是HTTP server status code, 已退還給您; 100表示The client SHOULD continue with its request.

您最好的選擇可能是啓動網絡流量嗅探器 (在Ubuntu,你可以使用Wireshark)查看數據包是什麼 傳輸工作站上/接收。嘗試在您的網絡和不同網絡上的不同工作站上安裝RVM。我的機器上沒有任何問題。