How do you get rmagick to work with Windows 7 64-bit with 3.1 rails and carrier?

I am having problems connecting rmagick to windows. Does anyone know how to do this correctly? And even better, I hope, in a way that is compatible with the production environment, although I will take everything I can get.

C:\> gem install rmagick --platform=ruby -- --with-opt-lib=%IMAGE_MAGICK_HOME%/lib --with-opt-include=%IMAGE_MAGICK_HOME%/include
Temporarily enhancing PATH to include DevKit...
Building native extensions.  This could take a while...
ERROR:  Error installing rmagick:
        ERROR: Failed to build gem native extension.

        c:/ruby192/bin/ruby.exe extconf.rb --with-opt-lib=C:\Program Files (x86)\ImageMagick-6.7.0-Q16/lib --with-opt-include=C:\Program Fil
es (x86)\ImageMagick-6.7.0-Q16/include
checking for Ruby version >= 1.8.5... yes
checking for stdint.h... *** 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=${opt-dir}/include
        --with-opt-lib=${opt-dir}/lib
        --with-make-prog
        --without-make-prog
        --srcdir=.
        --curdir
        --ruby=c:/ruby192/bin/ruby
c:/ruby192/lib/ruby/1.9.1/mkmf.rb:368:in `try_do': The complier failed to generate an executable file. (RuntimeError)
You have to install development tools first.
        from c:/ruby192/lib/ruby/1.9.1/mkmf.rb:452:in `try_cpp'
        from c:/ruby192/lib/ruby/1.9.1/mkmf.rb:834:in `block in have_header'
        from c:/ruby192/lib/ruby/1.9.1/mkmf.rb:693:in `block in checking_for'
        from c:/ruby192/lib/ruby/1.9.1/mkmf.rb:280:in `block (2 levels) in postpone'
        from c:/ruby192/lib/ruby/1.9.1/mkmf.rb:254:in `open'
        from c:/ruby192/lib/ruby/1.9.1/mkmf.rb:280:in `block in postpone'
        from c:/ruby192/lib/ruby/1.9.1/mkmf.rb:254:in `open'
        from c:/ruby192/lib/ruby/1.9.1/mkmf.rb:276:in `postpone'
        from c:/ruby192/lib/ruby/1.9.1/mkmf.rb:692:in `checking_for'
        from c:/ruby192/lib/ruby/1.9.1/mkmf.rb:833:in `have_header'
        from extconf.rb:193:in `<main>'


Gem files will remain installed in c:/ruby192/lib/ruby/gems/1.9.1/gems/rmagick-2.13.1 for inspection.
Results logged to c:/ruby192/lib/ruby/gems/1.9.1/gems/rmagick-2.13.1/ext/RMagick/gem_make.out
+3
source share
3 answers

The answer in this thread made it work on both of my computers: RMagick on Windows

I hope this works for you too!

+4
source

Here is a video with all the steps to get RMagick RubyGem 2.13.1 working in Windows 7 http://youtu.be/gEWAVlNCKhg hope this helps :)

+1
source

: rmagick Ruby 2.1-x64 Windows, reddit, :


Ruby http://rubyinstaller.org/downloads/ -. (, Ruby Rubyinstaller, Dev Kit , .)

DevKit,

dk.rb init

config.yml Rubies, , ,

dk.rb review

dk.rb install

DevKit Ruby, Ruby-.

ImageMagick http://www.imagemagick.org/script/binary-releases.php#windows (ImageMagick-6.9.2-3-Q16-x64-dll.exe ) . C ++.

, PATH.

PATH, , ImageMagick PATH, ( script convert.exe, ImageMagick, C:\Windows\system32\Convert.exe).

Run the following line, the appropriate replacement for the ImageMagick location on your system (which, you remember, should not contain spaces):

gem install rmagick --platform=ruby -- --with-opt-lib=D:/Tools/ImageMagick-6.9.2-Q16/lib --with-opt-include=D:/Tools/ImageMagick-6.9.2-Q16/include --with-opt-dir=D:/Tools/ImageMagick-6.9.2-Q16

He should drop a couple of minutes and then you will be gold.

By the way, as long as you intend to use RMagick, you are stuck with ImageMagick in your PATH.
0
source

All Articles