Can't install Ruby on Mountain Lion with rvm

僤鯓⒐⒋嵵緔 提交于 2020-01-01 19:00:03

问题


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.


回答1:


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




回答2:


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



来源:https://stackoverflow.com/questions/14045359/cant-install-ruby-on-mountain-lion-with-rvm

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!