我尝试使用命令切换到 2.3.3 版rvm use 2.3.3
ruby -v
显示:
ruby 2.3.3p222 (2016-11-21 revision 56859) [x86_64-linux]
但是当我运行rake db:create:all db:migrate db:seed
时,我不断收到上面提到的错误:
Your Ruby version is 2.4.1, but your Gemfile specified 2.3.3
我也尝试了其他可能的修复方法,但似乎都不起作用。
所以我决定卸载版本 2.4.1 和 2.4.0,但错误不断出现。
我能做什么?
希望你能帮到我,谢谢!
编辑:
命令rvm list
显示:
rvm rubies
jruby-9.1.7.0 [ x86_64 ]
ruby-2.3.3 [ x86_64 ]
运行命令bunde -v
时显示以下内容:
/usr/local/lib/ruby/2.4.0/rubygems.rb:270:in
find_spec_for_exe': can't find gem bundler (>= 0.a) (Gem::GemNotFoundException)
from /usr/local/lib/ruby/2.4.0/rubygems.rb:298:in activate_bin_path
from /usr/local/bin/bundler:22:in '<main>'
所以我检查了/usr/local/lib/ruby
,有一个 2.4.0 的目录可能已卸载。希望这有帮助。
提前谢谢。
can't find gem bundler
建议你没有安装捆绑器,即使你有宝石文件?
尝试运行gem install bundler
,这应该可以解决问题。