Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

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?

like image 919
pickwick Avatar asked Aug 22 '13 21:08

pickwick


1 Answers

Reinstalling imagemagick fixed the problem.

like image 104
pickwick Avatar answered Oct 15 '22 13:10

pickwick