Problem
You are trying to install rmagick in an Ubuntu 12.04 virtual box, but you get the following error:
1 |
Can't install RMagick 2.13.1. Can't find Magick-config |
Solution
Make sure you install both the imagemagick and the libmagickwand-dev packages with either apt-get :
1 |
sudo apt-get install imagemagick libmagickwand-dev |
or in a puppet script as:
1 2 3 4 5 6 7 8 9 |
package { "imagemagick": ensure => installed } package { "libmagickwand-dev": ensure => installed } |