execJs: 'Could not find a JavaScript runtime' but execjs AND therubyracer are in Gemfile execJs: 'Could not find a JavaScript runtime' but execjs AND therubyracer are in Gemfile ruby-on-rails ruby-on-rails

execJs: 'Could not find a JavaScript runtime' but execjs AND therubyracer are in Gemfile


Ubuntu Users:

I had the same problem and I fixed it by installing nodejson my system independent of the gem.

on ubuntu its: sudo apt-get install nodejs

I'm using 64bit ubuntu 11.10

update:From @Galina 's answer below I'm guessing that the latest version of nodejs is required,so @steve98177 your best option on a redhat(or CentOS) box is to install from source code as @Galina did, but as you can't "make/install" on this box ?, I suggest you try to install a fedora rpm(long shot) https://github.com/joyent/node/wiki/Installing-Node.js-via-package-manageror find another RH/CentOs box(that you can 'make' on) and create your own rpm and install on original RH box(if old glibc on RH plays nice).

The real issue here(IMHO) is installing Gems that have dependencies on installed packages outside of the ruby environment, is there a way of knowing before installing ? an RFI for Gems or bundler ?


CentOS/RedHat Users:

sudo yum install nodejs


In your gemfile add:

gem 'execjs'gem 'therubyracer', :platforms => :ruby

For more details: ExecJS and could not find a JavaScript runtime