Project

General

Profile

HowTo install rmagick gem on Windows » History » Version 2

Etienne Massip, 2012-05-25 13:28

1 1 Etienne Massip
h1. HowTo install @rmagick@ gem on Windows
2
3
{{>toc}}
4
5
h2. Prerequisite
6
7
You need to have the "DevKit":http://rubyinstaller.org/add-ons/devkit installed.
8
9
h2. Installation of "ImageMagick":http://www.imagemagick.org
10
11
Download last setup package from http://www.imagemagick.org/script/binary-releases.php#windows and run it.
12
13
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:
14
15
!ImageMagick_setup_options.png!
16
17
h2. Installation of the @rmagick@ gem
18
19
* open a new command prompt
20
* set @CPATH@ and @LIBRARY_PATH@ environment variables to point respectively to @ImageMagick@ installation directory @include@ and @lib@ subdirectories (so the DevKit will find them at build time)
21
22
For example:
23
24
 @set CPATH=C:\Program Files\ImageMagick-6.7.7-Q16\include@
25
@set LIBRARY_PATH=C:\Program Files\ImageMagick-6.7.7-Q16\lib@
26
27
* actually install the gem, e.g. with @gem install rmagick@ or @bundle install --without=development test@, etc.
28
29
Result:
30
!rmagick_installation_prompt.jpg!
31 2 Etienne Massip
!redmine_informations.png!