繁体   English   中英

ExecJS::RuntimeUnavailable 在 Rails 4.1.4 中

[英]ExecJS::RuntimeUnavailable in Rails 4.1.4

更新:现在一切正常!

多亏了deep ,我安装了 node.js 然后得到了一个 TZInfo::DataSourceNotFound 错误,通过添加gem 'tzinfo-data', platforms: [:mingw, :mswin]bundle update解决了这个错误。

谢谢你,先生 !


首先,我是一个完整的 Rails 初学者(只是为了让您了解我的初学者程度:我觉得自己只是在这里发帖的专家)这是我在这里的第一个问题,所以如果我不是很熟,请原谅我清除。

因此,我是一名 Windows 7 用户,正在通过 One Month 课程学习 Rails,但在尝试执行以下操作时遇到错误:

$ rake routes
rake aborted!
ExecJS::RuntimeUnavailable: Could not find a JavaScript runtime. See https://git
hub.com/sstephenson/execjs for a list of available runtimes.
c:/Users/Marc Montagne/Desktop/pinteresting/config/application.rb:7:in `<top (re
quired)>'
c:/Users/Marc Montagne/Desktop/pinteresting/Rakefile:4:in `<top (required)>'
(See full trace by running task with --trace)

或者

$ rails server
c:/RailsInstaller/Ruby2.0.0/lib/ruby/gems/2.0.0/gems/execjs-2.0.2/lib/execjs/run
times.rb:51:in `autodetect': Could not find a JavaScript runtime. See https://gi
thub.com/sstephenson/execjs for a list of available runtimes. (ExecJS::RuntimeUn
available)
        from c:/RailsInstaller/Ruby2.0.0/lib/ruby/gems/2.0.0/gems/execjs-2.0.2/l
ib/execjs.rb:5:in `<module:ExecJS>'
        from c:/RailsInstaller/Ruby2.0.0/lib/ruby/gems/2.0.0/gems/execjs-2.0.2/l
ib/execjs.rb:4:in `<top (required)>'
        from c:/RailsInstaller/Ruby2.0.0/lib/ruby/gems/2.0.0/gems/uglifier-2.4.0
/lib/uglifier.rb:3:in `require'
        from c:/RailsInstaller/Ruby2.0.0/lib/ruby/gems/2.0.0/gems/uglifier-2.4.0
/lib/uglifier.rb:3:in `<top (required)>'
        from c:/RailsInstaller/Ruby2.0.0/lib/ruby/gems/2.0.0/gems/bundler-1.3.5/
lib/bundler/runtime.rb:72:in `require'
        from c:/RailsInstaller/Ruby2.0.0/lib/ruby/gems/2.0.0/gems/bundler-1.3.5/
lib/bundler/runtime.rb:72:in `block (2 levels) in require'
        from c:/RailsInstaller/Ruby2.0.0/lib/ruby/gems/2.0.0/gems/bundler-1.3.5/
lib/bundler/runtime.rb:70:in `each'
        from c:/RailsInstaller/Ruby2.0.0/lib/ruby/gems/2.0.0/gems/bundler-1.3.5/
lib/bundler/runtime.rb:70:in `block in require'
        from c:/RailsInstaller/Ruby2.0.0/lib/ruby/gems/2.0.0/gems/bundler-1.3.5/
lib/bundler/runtime.rb:59:in `each'
        from c:/RailsInstaller/Ruby2.0.0/lib/ruby/gems/2.0.0/gems/bundler-1.3.5/
lib/bundler/runtime.rb:59:in `require'
        from c:/RailsInstaller/Ruby2.0.0/lib/ruby/gems/2.0.0/gems/bundler-1.3.5/
lib/bundler.rb:132:in `require'
        from c:/Users/Marc Montagne/Desktop/pinteresting/config/application.rb:7
:in `<top (required)>'
        from c:/RailsInstaller/Ruby2.0.0/lib/ruby/gems/2.0.0/gems/railties-4.1.4
/lib/rails/commands/commands_tasks.rb:79:in `require'
        from c:/RailsInstaller/Ruby2.0.0/lib/ruby/gems/2.0.0/gems/railties-4.1.4
/lib/rails/commands/commands_tasks.rb:79:in `block in server'
        from c:/RailsInstaller/Ruby2.0.0/lib/ruby/gems/2.0.0/gems/railties-4.1.4
/lib/rails/commands/commands_tasks.rb:76:in `tap'
        from c:/RailsInstaller/Ruby2.0.0/lib/ruby/gems/2.0.0/gems/railties-4.1.4
/lib/rails/commands/commands_tasks.rb:76:in `server'
        from c:/RailsInstaller/Ruby2.0.0/lib/ruby/gems/2.0.0/gems/railties-4.1.4
/lib/rails/commands/commands_tasks.rb:40:in `run_command!'
        from c:/RailsInstaller/Ruby2.0.0/lib/ruby/gems/2.0.0/gems/railties-4.1.4
/lib/rails/commands.rb:17:in `<top (required)>'
        from bin/rails:4:in `require'
        from bin/rails:4:in `<main>'

我所了解的只是我对 ExecJS 有问题。 作为一个初学者,我什至不知道 ExecJS 是什么。

我阅读了伟大的线程#12520456 ,虽然编辑 runtimes.rb 没有解决我的问题,但它仍然让我更好地了解情况,并愿意通过修复它而不是通过添加节点来“忽略它”来解决我的问题。 js 特别是考虑到我之前可以运行我的服务器并且我想修复我基本上损坏的东西。

我的意思是,我认为我在编辑 Windows 环境的 PATH(我什至不知道这是什么)以修复我在安装 Heroku 时遇到的问题时做错了什么。 我记得我在某处阅读时编辑了该部分,虽然它似乎解决了我的 Heroku 问题,但我认为它搞砸了其余部分。

预先感谢您的帮助和理解。

Ubuntu 用户

我在 Ubuntu 11.04 上遇到了类似的问题。 安装 Node.js 修复了它。

从 Ubuntu 13.04 x64 开始,您只需要运行:

sudo apt-get install nodejs

这将解决问题。 CentOS/RedHat 用户

sudo yum install nodejs

一个快速而简单的解决方案是在 Gemfile 中取消注释这一行并再次运行bundle install

gem 'therubyracer',  platforms: :ruby

@KevinP在这里已经非常详细地回答了这个问题

按照上面的链接,您需要进入 Execjs 的runtimes.rb并更改他的答案中指定的那一行。 之后,重新启动您的服务器,它应该开始工作。

需要更改的块如下所示:

JScript = ExternalRuntime.new(
  :name        => "JScript",
  :command     => "cscript //E:jscript //Nologo",
  :runner_path => ExecJS.root + "/support/jscript_runner.js",
  :encoding    => 'UTF-8' # CScript with //U returns UTF-16LE
)

^ 归功于凯文 P。

我也回答了这个问题几天就到这里了。 https://stackoverflow.com/a/24591983/2456549

根据@RedDeath 的回答,以下是 Alpine 用户的方法:

apk add nodejs

那为我解决了错误。

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM