Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Rails: Error installing rmagick - ERROR: Failed to build gem native extension

I am trying to run one project on my local machine. I installed Ruby and Rails on my Mac OS system. It is working properly. I can create a new project and can run it properly without any error, but when I try to run the existing project it says that we have to bundle install. When I run that command I get the following error:

"An error occurred while installing rmagick (2.13.2), and Bundler cannot continue. Make sure that `gem install rmagick -v '2.13.2'` succeeds before bundling." 

When I run gem install rmagick -v '2.13.2' it gives me the following error:

ERROR:  Error installing rmagick: ERROR: Failed to build gem native extension.  /usr/local/rvm/rubies/ruby-1.9.3-p392/bin/ruby extconf.rb checking for Ruby version >= 1.8.5... yes checking for gcc-4.2... yes checking for Magick-config... no Can't install RMagick 2.13.2. Can't find Magick-config in /usr/local/rvm/gems/ruby-1.9.3-p392/bin:/usr/local/rvm/gems/ruby-1.9.3-p392@global/bin:/usr/local/rvm/rubies/ruby-1.9.3-p392/bin:/usr/local/rvm/gems/ruby-1.9.3-p392/bin:/usr/local/rvm/gems/ruby-1.9.3-p392@global/bin:/usr/local/rvm/rubies/ruby-1.9.3-p392/bin:/usr/local/rvm/bin:/usr/bin:/bin:/usr/sbin:/sbin:/usr/local/bin:/opt/sm/bin:/opt/sm/pkg/active/bin:/opt/sm/pkg/active/sbin  *** 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/rvm/rubies/ruby-1.9.3-p392/bin/ruby   Gem files will remain installed in /usr/local/rvm/gems/ruby-1.9.3-p392/gems/rmagick-2.13.2 for inspection. Results logged to /usr/local/rvm/gems/ruby-1.9.3-p392/gems/rmagick-2.13.2/ext/RMagick/gem_make.out 

I have searched and did not find an answer anywhere.

like image 258
user2863141 Avatar asked Oct 09 '13 14:10

user2863141


2 Answers

For Ubuntu, I used the ff. based on this link:

$ sudo apt-get install libmagick++-dev 
like image 128
Jonathan Avatar answered Sep 21 '22 22:09

Jonathan


On a mac (the below code works on OSX Mavericks):

brew install imagemagick gem install rmagick 
like image 36
Neil Billingham Avatar answered Sep 20 '22 22:09

Neil Billingham