Problems with RVM when installing ruby ​​2

I did rvm get stable

Then I tried to install ruby ​​2.0.0

$ **rvm install 2.0.0** 
Searching for binary rubies, this might take some time.
No binary rubies available for: osx/10.8/x86_64/ruby-2.0.0-p0.
Continuing with compilation. Please read 'rvm mount' to get more information on binary rubies.
Installing requirements for smf, might require sudo password.
Installing SM Framework.
Error running 'requirements_smf_install_sm',
please read /usr/local/rvm/log/ruby-2.0.0-p0/smf_install.log

$ **cat /usr/local/rvm/log/ruby-2.0.0-p0/smf_install.log**
[2013-03-28 20:58:11] requirements_smf_install_sm
SMF Framework support is only intended for RailsInstaller, please use Homebrew integration instead.

The error log is not very useful. I am on Mac OS X Mountain Lion. Any help?

+5
source share
2 answers

Try to run

brew update

If you do not have brew installed, there is a good guide here to complete the entire installation process, you can ignore 1.9.3 and replace it with 2.0.0

http://www.moncefbelyamani.com/how-to-install-xcode-homebrew-git-rvm-ruby-on-mac/

+3
source

This is because RVM has been configured to use a different library system: SMF. You need to install RVM instead of brew. Here is the page on rvm autolibs https://rvm.io/rvm/autolibs/

rvm autolibs show, , , brew, rvm autolibs brew

+10

All Articles