ruby on rails - Can't bundle install after cloning repo -
here's error when bundle. what's problem?
bundle install rbenv: bundle: command not found `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
try:
set correct ruby (rbenv) version
rbenv global 2.3.1
and
rbenv rehash
,bundle install
.
if won't work think should reinstall bundler
- once again set correct ruby version
rbenv global 2.3.1
gem uninstall bundler
gem install bundler
- and
rbenv rehash
,bundle install
.
Comments
Post a Comment