我已经在我的 Windows 10 上安装了 Atom 1.18.0 x64。然后按照这里的建议linter-ruby
添加了包并在我的文件中进行了编辑:config.cson
"linter-ruby":
ignoredExtensions: "erb, md"
rubyExecutablePath: "/home/myusername/.rbenv/shims/ruby"
路径对应的位置which ruby
(我在 Windows 10 上的 Ubuntu 上有 Bash)。
当我尝试编辑一些 Ruby 文件时,我收到此错误:
Error running Ruby Error: Failed to spawn command ruby. Make sure ruby is installed and on your PATH
我尝试了不同的路径,但没有任何帮助。我很确定,我的机器上安装了 Ruby,因为我可以运行我的 Rails 应用程序。
请问如何让我的 Atom linter 工作?谢谢!
解决方案
我最终完全卸载了 Atom,然后安装linter-ruby
了依赖项 + 在C:\Ruby24-x64
. 然后在linter-ruby
设置中将 RubyExecutablePath 保留为Default: ruby
. 现在它起作用了。