pickwick
pickwick

Reputation: 3154

Carrierwave, Rails 4; Errno::ENOENT (No such file or directory - identify)

I'm moving to Rails4. In my uploader, I have the following:

  version :thumb do
     process :resize_to_fill => [200, 200]
  end

Which now causes the following error: "Errno::ENOENT (No such file or directory - identify)"

The error goes away when I comment out the code, but of course now I don't have a thumbnail. Any ideas as to what is causing this?

Upvotes: 9

Views: 5125

Answers (2)

Sibevin Wang
Sibevin Wang

Reputation: 4558

If you update imagemagick and have the "Errno::ENOENT (No such file or directory - identify)" issue. Try to update the "mini_magick" and "rmagick" gem.

Upvotes: 0

pickwick
pickwick

Reputation: 3154

Reinstalling imagemagick fixed the problem.

Upvotes: 20

Related Questions