Skip to content

bundle exec rails consoleが動かない時の対処法

ShuzoN edited this page Mar 1, 2016 · 5 revisions

実行環境

  • OS X 10.11.3 (El Capitan)
  • bundler 1.11.2

作業手順

$ rbenv exec gem install bundler -v 1.10.5
$ bundle exec spring stop
$ bundle _1.10.5_ exec rails c

# 以後, バージョンは省略できる
$ bundle exec rails c

bundle exec rails consoleでエラーを吐く

# エラーログ
$ bundle exec rails c
...
require': cannot load such file -- bundler/setup (LoadError)
...

このページを見る.

bundle exec rails console ができない, `require': cannot load such file -- bundler/setup (LoadError) の解決方法

bundlerのバージョンが大切だそう.
どうやらbundler 1.11.Xとは相性が悪いらしく,
bundler 1.10.Xを使用する方が良いとのこと.

対処法と詳細は上記のページを参照.