Reputation: 6057
I installed rvm and now trying to install ruby 1.9.2, when I do the following :
~% rvm install 1.9.2
No binary rubies available for: ///ruby-1.9.2-p320.
Continuing with compilation. Please read 'rvm mount' to get more information on binary rubies.
Fetching yaml-0.1.4.tar.gz to /Users/info/.rvm/archives
Extracting yaml-0.1.4.tar.gz to /Users/info/.rvm/src
Configuring yaml in /Users/info/.rvm/src/yaml-0.1.4.
I don't know what I'm doing wrong here, please note I'm using mountain lion OS X and I already installed ruby 1.9.3 with rvm
~% rvm list
rvm rubies
=* ruby-1.9.3-p194 [ x86_64 ]
# => - current
# =* - current && default
# * - default
Do you have any clue what i'm doing wrong here ?
Please note that rvm requirements give me the following results : https://gist.github.com/edb19698cd23e52999f5
Thanks
Upvotes: 2
Views: 2206
Reputation: 11310
This work for me make sure RVM is up to date
rvm get head
CC=/usr/bin/gcc rvm install 1.9.2 --enable-shared
note: /usr/bin/gcc ==> path/to/gcc
Upvotes: 2
Reputation: 2929
RVM just upgraded their version and added binary ruby option, all it means is that it will download and compile ruby on your machine because it didn't find an appropriate binary. This is not an error, just an info. It looks like it is just taking it's time, it could take up to 30 minutes to download/compile requirements.
Upvotes: 0