Rbczmq error while installing iruby

I am trying to install iruby on a windows machine and this error keeps popping up. I am currently doing deep learning and I need to use sciruby and iruby to do the required steps.

PS C:\> gem install iruby
Temporarily enhancing PATH to include DevKit...
Building native extensions.  This could take a while...
ERROR:  Error installing iruby:
        ERROR: Failed to build gem native extension.

    C:/RailsInstaller/Ruby2.1.0/bin/ruby.exe -r ./siteconf20150710-76680-1u0zekx.rb extconf.rb
checking for windows.h... yes
checking for winsock.h... yes
checking for main() in -lkernel32... yes
checking for main() in -lrpcrt4... yes
checking for main() in -lgdi32... yes
*** 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
        --without-opt-include=${opt-dir}/include
        --with-opt-lib
        --without-opt-lib=${opt-dir}/lib
        --with-make-prog
        --without-make-prog
        --srcdir=.
        --curdir
        --ruby=C:/RailsInstaller/Ruby2.1.0/bin/ruby
        --with-kernel32lib
        --without-kernel32lib
        --with-rpcrt4lib
        --without-rpcrt4lib
        --with-gdi32lib
        --without-gdi32lib
extconf.rb:49:in `<main>': uninitialized constant GNU_CHAIN (NameError)

extconf failed, exit code 1

Gem files will remain installed in C:/RailsInstaller/Ruby2.1.0/lib/ruby/gems/2.1.0/gems/rbczmq-1.7.9 for inspection.
Results logged to C:/RailsInstaller/Ruby2.1.0/lib/ruby/gems/2.1.0/extensions/x86-mingw32/2.1.0/rbczmq-1.7.9/gem_make.out

      

Help solve this problem

+3


source to share


1 answer


I'm new to python and don't know anything about ruby, but I think the ipython notebook is so great that I want to try it for a different kernel,
so I just installed ruby โ€‹โ€‹and ended up with the same problem and google didn't help me,

but I'm really good at things after one hour @ # $ @ % &% @%! (@ !, I found a way:
C: \ Ruby22-x64 \ lib \ ruby โ€‹โ€‹\ gems \ 2.2.0 \ gems \ rbczmq-1.7.9 \ ext \ rbczmq \ extconf.rb
add the GNU_CHAIN โ€‹โ€‹= 1 statement at the top
cd C: \ Ruby22-x64 \ lib \ ruby โ€‹โ€‹\ gems \ 2.2.0 \ gems \ rbczmq-1.7.9
gem spec .... \ cache \ rbczmq-1.7.9.gem --ruby> ... . \ spec \ rbczmq-1.7.9.gem.gemspec
gem build .... \ spec \ rbczmq-1.7.9.gem.gemspec
now the list of gems displays "rbczmq (1.7.9)"

I didn't know anything about ruby, so I don't know if rbczmq actually works or not. "iruby notebook" starts succ and new kernel "ruby 2.2.2" is added, but it also says "kernel error" when I select it
Track Back says "OSError: [WinError 193]"



Now I can help, so maybe now you can figure it out and tell me how to get the new kernel to do the trick

0


source







All Articles