2

在第一步遇到大问题。我安装了 RVM,然后输入“rvm install 1.9.3”,输出如下:

David-Coles-MacBook-Air:~ DavesPiece$ rvm install 1.9.3
Fetching yaml-0.1.4.tar.gz to /Users/DavesPiece/.rvm/archives
Extracting yaml-0.1.4.tar.gz to /Users/DavesPiece/.rvm/src
Configuring yaml in /Users/DavesPiece/.rvm/src/yaml-0.1.4.
Error running ' ./configure --prefix="/Users/DavesPiece/.rvm/usr"  ', please read /Users/DavesPiece/.rvm/log/ruby-1.9.3-p194/yaml/configure.log
Compiling yaml in /Users/DavesPiece/.rvm/src/yaml-0.1.4.
Error running 'make ', please read /Users/DavesPiece/.rvm/log/ruby-1.9.3-p194/yaml/make.log


Database file /Users/DavesPiece/.rvm/config/packages does not exist.

Installing Ruby from source to: /Users/DavesPiece/.rvm/rubies/ruby-1.9.3-p194, this may take a while depending on your cpu(s)...

ruby-1.9.3-p194 - #fetching 
ruby-1.9.3-p194 - #extracted to /Users/DavesPiece/.rvm/src/ruby-1.9.3-p194 (already extracted)
ruby-1.9.3-p194 - #configuring 
Error running ' ./configure --prefix=/Users/DavesPiece/.rvm/rubies/ruby-1.9.3-p194 --enable-shared --disable-install-doc --with-libyaml --with-opt-dir=/Users/DavesPiece/.rvm/usr ', please read /Users/DavesPiece/.rvm/log/ruby-1.9.3-p194/configure.log
There has been an error while running configure. Halting the installation.
ls: /Users/DavesPiece/.rvm/rubies/*/bin/ruby: No such file or directory
David-Coles-MacBook-Air:~ DavesPiece$ 

我去阅读了它提到的日志文件,但没有任何结果。知道我应该怎么做吗?我几乎用谷歌搜索了我的脸,找不到解决方案。

4

3 回答 3

1

这看起来很可疑,你是如何安装 RVM 的?

最简单的解决方案是:

touch /Users/DavesPiece/.rvm/config/packages
于 2012-04-27T16:08:27.473 回答
0

无法使用 RVM 在 Lion 下安装 Ruby – GCC 问题

于 2012-05-10T22:39:55.853 回答
0

如果您没有 Xcode,则需要安装它。如果您有 Lion 10.7.3 或更高版本,您可以在 App Store 中找到它。否则,您将需要访问 Apple 开发者网站(需要帐户)以查找下载和安装说明。

此外,如果您使用 Lion,则可能需要下载并安装 GCC-10.7-v2.pkg。如果您看到有关您的编译器基于 LLVM 的消息,您可能需要改用以下命令:CC=/usr/bin/gcc-4.2 rvm install 1.9.2-p290 --enable-shared

在没有看到您的 configure.log 的情况下,这只是一个最佳猜测。

于 2012-04-27T02:36:48.567 回答