Running “bundle install” fails and asks me to run “bundle install”

前端 未结 2 522
余生分开走
余生分开走 2021-02-15 08:55

In fact, all gem-related commands result in the same error message, when run from inside the existing rails app I cloned from a git repo.

$ bundle install
Could          


        
2条回答
  •  你的背包
    2021-02-15 09:31

    I had this problem. Once I did:

    [root@smaug ~]# PATH=$PATH:~/.gem/ruby/2.0.0/bin

    [root@smaug ~]# export PATH

    Then it was fixed and I could just

    [root@smaug msf3]# bundle install

    successfully.

提交回复
热议问题