0

我在终端中输入了这个:rvm install 1.9.3我得到了这个错误作为回报:

Error running ' ./configure --prefix=/Users/ppreyer/.rvm/rubies/ruby-1.9.3-p194 
--enable-shared --disable-install-doc --with-libyaml 
--with-opt-dir=/Users/ppreyer/.rvm/usr ', 
please read /Users/ppreyer/.rvm/log/ruby-1.9.3-p194/configure.log
There has been an error while running configure. Halting the installation.

我想知道是否有人知道解决此错误的最佳方法?

4

3 回答 3

1

如果您正在设置一台新机器,并且您似乎对 rvm 不熟悉,我建议您将其替换为 rbenv + ruby​​-build。

您将需要安装自制软件,这是一个非常容易安装东西的好工具,它提供了一个向您推荐一些配置的工具,只需执行brew doctor,例如它说您应该安装 xcode 命令行工具,所以您没有这种的问题。

它比 rvm 更轻,并且不像 rvm 那样突兀,并且它带有自动完成命令的功能;)它真的很好,我比 rvm 更喜欢它。

于 2012-05-25T00:16:22.263 回答
1

我有一个类似的问题,但在这里找到了一个有效的答案:https ://stackoverflow.com/a/14467463/1536309

rvm get head
rvm requirements run

它可能会要求您输入密码。

之后运行:

rvm install 1.9.3 --with-opt-dir=`brew --prefix readline` --without-tcl --without-tk
于 2013-01-29T03:07:58.557 回答
0

My best bet would a problem with clang try this

rvm install 1.9.3 --with-gcc=clang
于 2012-05-24T23:49:02.567 回答