这是我捆绑时的错误。有什么问题?
bundle install
rbenv: bundle: command not found
The `bundle' command exists in these Ruby versions:
2.3.1
command -v ruby
/home/brian/.rbenv/shims/ruby
command -v bundle
/home/brian/.rbenv/shims/bundle
ruby -v
ruby 2.3.1p112 (2016-04-26 revision 54768) [x86_64-linux]
bundle -v
Bundler version 1.15.3
答案 0 :(得分:1)
尝试:
设置正确的ruby(rbenv)版本rbenv global 2.3.1
然后是rbenv rehash
,然后是bundle install
。
如果这不起作用,我认为你应该重新安装捆绑包
rbenv global 2.3.1
gem uninstall bundler
gem install bundler
rbenv rehash
,然后是bundle install
。