2012-07-25 159 views
2

我使用的是Mac OS X 10.7.4,目前使用的是Ruby 1.9.2。我試圖用RVM執行rvm install 1.9.3當安裝Ruby 1.9.3,但出現以下錯誤:使用RVM安裝Ruby 1.9.3時運行'autoconf'時出錯

Running autoconf 
Error running 'autoconf', please read .../.rvm/log/ruby- 1.9.3/autoconf.log 
Skipping configure step, 'configure' does not exist, did autoconf not run successfully? 
ruby-1.9.3 - #compiling 
Error running 'make ', please read .../.rvm/log/ruby-1.9.3/make.log 
There has been an error while running make. Halting the installation. 

我什麼也沒發現在這兩個autoconf.logmake.log有用。

我看了類似的問題,但無法解決這個問題。我也嘗試刪除中推薦的ruby-1.9.2-p0 directory

我真的可以在這裏使用一些幫助(以及爲什麼會發生這種情況的可能解釋)。

謝謝。

回答

5

貌似沒有正確探測紅寶石版本,請確保您使用最新的RVM:

curl -L https://get.rvm.io | bash 
rvm reload 

還指定完整的版本可能會有所幫助:

rvm install ruby-1.9.3-p194 
+0

我試圖升級RVM像你說的,但收到了一堆「失敗」的錯誤。然後我按照RVM網站的建議嘗試了'rvm get head',並收到這個錯誤:'錯誤:無法打開.git/FETCH_HEAD:權限被拒絕。最後,我執行'rvm install ruby​​-1.9.3-p194'並運行;但是,您是否知道爲什麼我無法升級RVM?再次感謝! – mmichael 2012-07-25 14:09:55

+1

更新rvm的命令在我的答案 - 安裝程序也更新! – mpapis 2012-07-25 15:01:10

相關問題