2

我使用的是 Mac OS X 10.7.4,目前使用的是 Ruby 1.9.2。我正在尝试使用 RVM 安装 Ruby 1.9.3,但在执行时出现以下错误rvm install 1.9.3

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.log我在和中都没有发现任何有用的东西make.log

我查看了类似的问题,但无法解决此问题。ruby-1.9.2-p0 directory我还尝试按照此问题中的建议删除。

我真的可以在这里使用一些帮助(以及为什么会发生这种情况的可能解释)。

谢谢你。

4

1 回答 1

5

似乎没有正确检测到 ruby​​ 版本,请确保使用最新的 RVM:

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

还指定完整版本可能会有所帮助:

rvm install ruby-1.9.3-p194
于 2012-07-25T05:22:40.853 回答