Connor Phillips
Connor Phillips

Reputation: 47

trouble installing rvm

So I am trying to install RVM, but I think there is a conflict with Xcode on my mac computer. I used to run rvm install ruby-1.9.2-p320 and this was my error The provided compiler

'/usr/bin/gcc' is LLVM based, it is not yet fully supported by ruby and gems, please read `rvm requirements`.

I then read a solution to write rvm get head and its successful, but when I run rvm install ruby-1.9.2-p320 again, I get this error.

No binary rubies available for: ///ruby-1.9.2-p320.
Continuing with compilation. Please read 'rvm mount' to get more information on binary rubies.
The provided compiler '/usr/bin/gcc' is LLVM based, it is not yet fully supported by ruby and gems, please read `rvm requirements`.
'rvm_codesign_identity' is not set, please set it in ~/.rvmrc

Upvotes: 1

Views: 1249

Answers (3)

somedirection
somedirection

Reputation: 717

installing this package (Mountain Lion) fit the bill for me. https://github.com/kennethreitz/osx-gcc-installer

Upvotes: 0

Uladz Kha
Uladz Kha

Reputation: 2364

'/usr/bin/gcc' is LLVM based, it is not yet fully supported by ruby and gems, please read `rvm requirements`.

see:

, please read `rvm requirements`.

use: $ rvm requirements

and install wthat you need. For Ruby, or JRuby ....

Upvotes: 1

Prakash Murthy
Prakash Murthy

Reputation: 13077

Try rvm install 1.9.2 --with-gcc=clang as explained in the answer here https://stackoverflow.com/a/8032980/429758

Upvotes: 3

Related Questions