简体   繁体   English

无法使用rvm在Mountain Lion上安装Ruby

[英]Can't install Ruby on Mountain Lion with rvm

Have tried to install Ruby on Mountain Lion using rvm, but got this error message: 尝试使用rvm在Mountain Lion上安装Ruby,但收到此错误消息:

ruby-1.9.3-p362 - #extracted to /usr/local/rvm/src/ruby-1.9.3-p362
ruby-1.9.3-p362 - #configuring
Error running 'env LDFLAGS=-L/opt/sm/pkg/active/lib CFLAGS=-I/opt/sm/pkg/active/include CPATH=/opt/sm/pkg/active/include ./configure --enable-shared --disable-install-doc --prefix=/usr/local/rvm/rubies/ruby-1.9.3-p362 --with-opt-dir=/usr/local/rvm/usr', please read /usr/local/rvm/log/ruby-1.9.3-p362/configure.log
There has been an error while running configure. Halting the installation.
ruby-1.9.3-p362 is not installed.
Creating alias default for ruby-1.9.3-p362.
Recording alias default for ruby-1.9.3-p362.
Creating default links/files
ruby-1.9.3-p362 is not installed.
Could not load ruby ruby-1.9.3-p362.
/usr/local/rvm/scripts/alias: line 111: /usr/local/rvm/rubies/ruby-1.9.3-p362/bin/ruby: No such file or directory

What can I do to get a proper install of Ruby working? 我该怎么做才能正确安装Ruby? Also have Homebrew package manager installed; 还安装了Homebrew包管理器; is there a conflict? 有冲突吗?

Thanks in advance. 提前致谢。

It's probably due to the fact that recent versions of OS X use the LLVM instead of defaulting to the GCC compiler. 这可能是由于最新版本的OS X使用LLVM而不是默认为GCC编译器。

Try this: 尝试这个:

brew update
brew tap homebrew/dupes
brew install apple-gcc42

to install the GCC compiler. 安装GCC编译器。 Then: 然后:

rvm install 1.9.3 --with-gcc=clang`

EDIT: If the previous solution doesn't work, try giving the following a try before running rvm install 1.9.3 : 编辑:如果以前的解决方案不起作用,请尝试在运行rvm install 1.9.3之前尝试以下操作:

export CC=/usr/local/bin/gcc-4.2

EDIT 2: The following github page outlines the issue and multiple solutions, added to this post for documentation purposes: Installation tips for RVM/Ruby on OSX 10.8 Mountain Lion 编辑2:以下github页面概述了问题和多个解决方案,添加到本文中以用于文档目的: OSX 10.8 Mountain Lion上的RVM / Ruby安装提示

This has detailed instructions on exactly what you need to do. 这详细说明了您需要做什么。

RVM keeps setting up ruby 1.8.7 instead of the latest version 1.9 in MAC RVM不断设置ruby 1.8.7而不是MAC中的最新版本1.9

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM