2

I am giving this command to command prompt "buncle install"..and it gives an error "install therubyracer". When i install therubyracer i got this error "error installing therubyracer error failed to build gem native extension". Anyone who knows please help me.

Coder
  • 119
  • 1
  • 3
  • 9
  • See http://stackoverflow.com/questions/8126465/bundle-install-update-libv8-therubyracer-installation-fails-with-native-ex – sites Jan 15 '13 at 01:54

1 Answers1

3

You can use the Libv8 from the brew instead of the one from gem. You can do that by following commands:

$ gem uninstall libv8


$ gem install therubyracer
Nazik
  • 8,696
  • 27
  • 77
  • 123
santosh
  • 1,611
  • 1
  • 13
  • 21
  • Might also need to `brew install v8` | http://stackoverflow.com/questions/11598655/therubyracer-install-error – TomFuertes Dec 03 '13 at 19:48