简体   繁体   中英

Can't install Ruby on Mountain Lion with rvm

Have tried to install Ruby on Mountain Lion using rvm, but got this error message:

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? Also have Homebrew package manager installed; 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.

Try this:

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

to install the GCC compiler. 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 :

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

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

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

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