我正在尝试使用rbenv进行捆绑。当我检查ruby版本时,它给了我2.4.0,rbenv。但是在调用bundle时,它使用的是默认安装的osx版本。
MacBook-Pro-256:kittens-or-puppies antarrbyrd$ bundle
Your Ruby version is 2.0.0, but your Gemfile specified 2.4.0
MacBook-Pro-256:kittens-or-puppies antarrbyrd$ ruby -v
ruby 2.4.0p0 (2016-12-24 revision 57164) [x86_64-darwin16]
答案 0 :(得分:4)
运行rbenv rehash
rehash命令更新bundle二进制文件的shim。
确保您已将此添加到.bash_profile
export PATH="$HOME/.rbenv/bin:$PATH"
eval "$(rbenv init -)"
还尝试卸载bundler并重新安装,然后运行rehash
。