1
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 1 year has passed since last update.

【Rails】Could not find gem 'rmagick (= 2.16.0)' in locally installed gems.の対処法【rmagick】

Posted at

症状

rmagickをinstallして、Railsサーバーを起動したところ、下記のエラーメッセージが表示されました。 翻訳すると、「ローカルにインストールされたgemでgem'rmagick(= 2.16.0)'が見つかりませんでした。 ソースには、次のバージョンの「rmagick」が含まれています。4.2.5 `bundle install`を実行して、不足しているgemをインストールします。」
error
$ gem install rmagick
Could not find gem 'rmagick (= 2.16.0)' in locally installed gems.
The source contains the following versions of 'rmagick': 4.2.5
Run `bundle install` to install missing gems.```

一応Gemfileのrmagickも記載します。

```ruby:Gemfile
gem 'carrierwave'
gem 'rmagick','2.16.0'

解決策

エラーメッセージ通り、Gemfileのrmagickのバージョンを書き換え、指示通りにbundle installをすると、Railksサーバーが動くようになりました!
Gemfile
gem 'carrierwave'
gem 'rmagick','4.2.5'
1
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
1
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?