Cannot install RMagick 2.16.0

* extconf.rb failed * Failed to create a Makefile for some reason, possibly the lack of necessary libraries and / or headers. Read more in the mkmf.log file. You may need configuration options.

+5
source share
1 answer

There was the same problem. The following is fixed for me using Ubuntu Linux:

sudo apt-get update ... sudo apt-get install libmagickcore-dev ... sudo apt-get install libmagickwand-dev ... bundle install 

You may need to run bundle update if you have other dependency problems, just like me. Good luck

+6
source

All Articles