I have update my system to Ubuntu 15.04 and now Rmagick can\'t be installed...
It gives me the following error:
$ gem install rmagick -v \'2.13.2\'
Build
I ran into same problem on clean Ubuntu 15.4 installation. Upgrade rmagick
from 2.13.2
to 2.15.0
helped.
Things I tried, that did not help:
/usr/include/wand
MagickWand.h
⇒ magick_wand.h
;libmagickcore-dev
.Hope it helps.
I am on ubuntu 15.04 and was able to get it by specifying version of rmagick
gem 'rmagick', '2.15.0'
If you are on Debian/Ubuntu I was able to fix it by doing the following:
sudo apt-get install libmagickwand-dev
sudo apt-get install graphicsmagick-imagemagick-compat
PATH="/usr/lib/x86_64-linux-gnu/ImageMagick-6.8.9/bin-Q16:$PATH" gem install rmagick -v '2.13.2'
your lib versions may be different so check the version in /usr/lib/x86...
I got this from this discussion: https://github.com/ttscoff/Slogger/issues/344
I had the same problem and I fixed it up updating rmagick. What I did was:
sudo apt-get install libmagickwand-dev imagemagick
bundle update rmagick
And now bundle works correctly.