bundler/setup (LoadError)

后端 未结 2 934
我在风中等你
我在风中等你 2020-12-10 00:35

I cloned a repository and tried to run rails s. However, I received the following error:

/Users/me/.rbenv/versions/1.9.3-p547/lib/ruby/1.9.1/rub         


        
2条回答
  •  不知归路
    2020-12-10 01:21

    You likely have bundler gem missing.

    To get it to work run (first command may need be executed with sudo, depending on your environment):

    [sudo] gem install bundler
    bundle install
    

提交回复
热议问题