ruby-on-rails – rails服务器无法运行

我是
Ruby on rails的新手.当我在终端上运行rails服务器时,我得到了错误:

dyld: lazy symbol binding failed: Symbol not found: _rb_ary_new_from_values
  Referenced from: /Users/apple/.rvm/gems/ruby-2.1.1@global/gems/psych-2.0.5/lib/psych.bundle
  Expected in: flat namespace

dyld: Symbol not found: _rb_ary_new_from_values
  Referenced from: /Users/apple/.rvm/gems/ruby-2.1.1@global/gems/psych-2.0.5/lib/psych.bundle
  Expected in: flat namespace

Trace/BPT trap: 5

我研究过并试过一些与其他人同样问题的解决方案.但没有找到修复它的方法.

最佳答案 在运行服务器之前,在控制台中键入bundle install.或许你还没有安装bundle gem,所以你需要gem install bundle.

虽然,它应该由指南安装宝石.也许是rvm的问题.

点赞