Reputation: 135
I tried to install ruby 1.9.3 using command rvm install 1.9.3 --with-gcc=clang
. But I got error saying
No binary rubies available for: osx/10.9/x86_64/ruby-1.9.3-p448.
Continuing with compilation.
Please read 'rvm help mount' to get more information on binary rubies.
Requirements installation failed with status: 1.
While I look into the installing log, I found it's saying
config/: Can't update time for config
doc/: Can't update time for doc
m4/: Can't update time for m4
Mk/: Can't update time for Mk
I tried many ways to install, but get the same error again and again, so what the problem is? And how should I do?
Upvotes: 4
Views: 12356
Reputation: 1
Bypass your macports:
Use sudo mv /opt/local ~/macports
Then make sure your Xcode is current and that should work.
Upvotes: 0
Reputation: 4681
You're running this on Mavericks/10.9, a prerelease OS. RVM checks the OS version and then looks for ruby binary packages that match that specific OS version on the server. There aren't yet any such binary packages.
If you install homebrew first, RVM should be able to get a working 1.9.3 ruby from there.
Upvotes: 2