Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Installing rmagick gem on ubuntu 14.04

I'm trying to deploy an app on OpsWorks, but there are problems with installing rmagick gem. I have the following OS packages:

libmagickwand-dev imagemagick libmagickcore-dev

Below is the log file with errors during deployment:

Gem::Ext::BuildError: ERROR: Failed to build gem native extension.

/usr/local/bin/ruby extconf.rb
checking for Ruby version >= 1.8.5... yes
checking for gcc... yes
checking for Magick-config... no
Can't install RMagick 0.0.0. Can't find Magick-config in /usr/local/bin:/usr/bin:/bin:/usr/local/games:/usr/games

*** extconf.rb failed ***
Could not create Makefile due to some reason, probably lack of necessary
libraries and/or headers.  Check the mkmf.log file for more details.  You may
need configuration options.

Provided configuration options:
--with-opt-dir
--without-opt-dir
--with-opt-include
--without-opt-include=${opt-dir}/include
--with-opt-lib
--without-opt-lib=${opt-dir}/lib
--with-make-prog
--without-make-prog
--srcdir=.
--curdir
--ruby=/usr/local/bin/ruby

extconf failed, exit code 1

Gem files will remain installed in /home/deploy/.bundler/myapp/ruby/2.1.0/gems/rmagick-2.13.3 for inspection.
Results logged to /home/deploy/.bundler/myapp/ruby/2.1.0/extensions/x86_64-linux/2.1.0/rmagick-2.13.3/gem_make.out
An error occurred while installing rmagick (2.13.3), and Bundler cannot
continue.
Make sure that `gem install rmagick -v '2.13.3'` succeeds before bundling.
STDERR:
---- End output of sudo su - deploy -c 'cd /srv/www/myapp/releases/20140929182350 && /usr/local/bin/bundle install --path /home/deploy/.bundler/myapp --without=test development' 2>&1 ----
Ran sudo su - deploy -c 'cd /srv/www/myapp/releases/20140929182350 && /usr/local/bin/bundle install --path /home/deploy/.bundler/myapp --without=test development' 2>&1 returned 5
[2014-09-29T18:24:08+00:00] FATAL: Chef::Exceptions::ChildConvergeError: Chef run process exited unsuccessfully (exit code 1)
like image 902
complete_morons Avatar asked Sep 29 '14 18:09

complete_morons


5 Answers

Install Imagemagick-dev libraries

Ubuntu systems: sudo apt-get install libmagickwand-dev

RHEL systems: yum install ImageMagick-devel

Mac: brew install imagemagick

like image 159
Mahattam Avatar answered Nov 19 '22 09:11

Mahattam


In Ubuntu 14.04 I also needed to install the libgmp-dev library to get working the newer rmagick 2.15.4 version:

sudo apt-get install libgmp-dev

Hope this helps!

like image 25
gbonline Avatar answered Sep 20 '22 13:09

gbonline


In your shell, run the following command:

apt-get install libmagickwand-dev
like image 26
S C Avatar answered Nov 19 '22 11:11

S C


I had the same problem after upgrading ubuntu to 15.05, some how the Magick-config file is no longer in my PATH. To fix this I first found the location of Magick-config

sudo find / -name "Magick-config"

which was /usr/lib/x86_64-linux-gnu/ImageMagick-6.8.9/bin-Q16/Magick-config then I added it to the path. Bundle succeeded afterwards.

like image 8
bigsolom Avatar answered Nov 19 '22 09:11

bigsolom


sudo apt-get install libmagickwand5 libmagickwand-dev
gem install rmagick -v 2.13.3
like image 3
manusvs650 Avatar answered Nov 19 '22 09:11

manusvs650