Ruby on Rails incompatible library

后端 未结 3 1635
南笙
南笙 2020-12-17 20:24

I\'ve just started to have a look at ruby on rails and can\'t get a server to run. I\'m running ruby 2.3.0 and rails 4.2.5 and after I have a new rail projects I try to run

3条回答
  •  陌清茗
    陌清茗 (楼主)
    2020-12-17 20:47

    I had a similar problem to what you described after I had taken a different ruby version into use (from 2.3.0 -> 2.3.3).

    I found that running:

    $ gem install bundler
    

    Then:

    $ bundle install
    

    ... worked a charm for me. This reinstalled all of the packages I needed in my Gemfile without any dependency issues.

提交回复
热议问题