0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

Puma caught this error: Error loading the 'sqlite3' Active Record adapter. Missing a gem it depends on? can't activate sqlite3 (~> 1.3.6), already activated sqlite3-1.4.0. Make sure all dependencies are added to Gemfile. (LoadError)

Posted at

Error内容

rails new コマンドで新しいアプリを作成しrails sしたところ、
ブラウザ画面で以下のエラーが表示された。

Puma caught this error: Error loading the 'sqlite3' Active Record adapter. Missing a gem it depends on? can't activate sqlite3 (~> 1.3.6), already activated sqlite3-1.4.0. Make sure all dependencies are added to Gemfile. (LoadError)

Errorを読むに、sqlite3のversionが原因。
確認してみるとversionが 1.4.0となっている。

$ gem list |grep sqlite3
sqlite3 (1.4.0)

対処方法

gem sqlite3のバージョンを明示的に、 1.3.6 で指定する。

gem 'sqlite3', '~> 1.3.6'

bundle installする。

ブラウザを更新すると
スクリーンショット 2019-03-15 19.33.20.png
このようなエラーが表示されるが、rails serverを再起動させるといつもの画面が表示されます。

スクリーンショット 2019-03-15 20.04.58.png
0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?