Vagrantで空のUbuntuを作って、Railsを立ち上げようと思ったら、下記のエラーがでました。
1 2 |
$ rails s /var/www/html/hoge/vendor/bundle/ruby/2.1.0/gems/execjs-2.2.2/lib/execjs/runtimes.rb:51:in `autodetect': Could not find a JavaScript runtime. See https://github.com/sstephenson/execjs for a list of available runtimes. (ExecJS::RuntimeUnavailable) |
単純にexecjsはnodejsが必要なので、nodejsを入れて解決です。
1 |
sudo apt-get install nodejs |