Created
September 14, 2011 07:52
-
-
Save ecpplus/1216066 to your computer and use it in GitHub Desktop.
[Rails] fix `autodetect': Could not find a JavaScript runtime. error
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
gem 'therubyracer' # add this |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Install JavaScript runtime environment in your systems by using following steps. this is best way to sole
wget http://nodejs.org/dist/node-v0.1.31.tar.gz
tar xfv node-v0.1.31.tar.gz
cd node-v0.1.31
./configure
make
make install
Thanks,
Jagat Singh