Actions
HowTo install rmagick gem on Windows » History » Revision 1
Revision 1/10
| Next »
Etienne Massip, 2012-05-25 13:11
Initial version
HowTo install rmagick gem on Windows¶
- Table of contents
- HowTo install rmagick gem on Windows
Prerequisite¶
You need to have the DevKit installed.
Installation of ImageMagick¶
Download last setup package from http://www.imagemagick.org/script/binary-releases.php#windows and run it.
In the Select Additional Tasks page of the wizard, make sure that both Add application directory to your system path and Install development headers and libraries for C and C++ options are checked:

Installation of the rmagick gem¶
- open a new command prompt
- set
CPATHandLIBRARY_PATHenvironment variables to point respectively toImageMagickinstallation directoryincludeandlibsubdirectories (so the DevKit will find them at build time)
For example:
set CPATH=C:\Program Files\ImageMagick-6.7.7-Q16\include
set LIBRARY_PATH=C:\Program Files\ImageMagick-6.7.7-Q16\lib
- actually install the gem, e.g. with
gem install rmagickorbundle install --without=development test, etc.
Result:
Updated by Etienne Massip over 13 years ago · 1 revisions