rails 3,4遇到 Could not find a JavaScript runtime execjs错误(ubuntu)

时间:2021-02-09 17:06:41

当我运行

  1. $rake db:create  

遇到下面错误

  1. rake aborted!  
  2. Could not find a JavaScript runtime. See https://github.com/sstephenson/execjs for a list of available runtimes.  
  3.   
  4. (See full trace by running task with --trace)  

在ubuntu环境下解决方法如下

  1. sudo apt-get install python-software-properties  
  2. sudo add-apt-repository ppa:chris-lea/node.js  
  3. sudo apt-get update  
  4. sudo apt-get install nodejs 

转自:http://blog.csdn.net/kucss/article/details/6832191