2011-08-24 131 views
1

我想從官方安裝頁面安裝rvm。 運行此被打破:安裝rvm時Github 403(連接被拒絕)

bash < <(curl -s https://rvm.beginrescueend.com/install/rvm) 
fatal: unable to connect a socket (Connection refused) 
Initialized empty Git repository in /home/ghufran/.rvm/src/rvm/.git/ 
fatal: https://github.com/wayneeseguin/rvm.git/info/refs download error - The requested URL returned error: 403 

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

我使用ubuntu 9.1 64 bit

回答

1

所以尋找到這之後,我想通了,這是不相關的RVM的。

問題出在我的網絡和用於git協議的端口未打開。開放港口爲我工作。

0

底座上的教程here

你安裝像所有的開發庫:

$ sudo apt-get install zlib1g-dev libreadline5-dev libssl-dev 
libxml2-dev 

我剛剛在我的Ubuntu 11.04盒子中提到的教程中成功安裝了rvm。我不認爲操作系統的版本是一個大問題。

旁邊,沒有Ubuntu 9.1,這是Ubuntu 9.10,這意味着發佈十月,2009年

+0

嘿,我能夠解決這個問題。事實證明,這是我的網絡問題。 git協議的端口已關閉,因此rvm腳本的下載失敗。 這很奇怪,因爲通過SSH的其他存儲庫工作正常.. 是的,我知道它是9.10!只需使用9.1作爲簡寫。 –