3

Windows マシンに iruby をインストールしようとしていますが、このエラーが表示され続けます。現在、深層学習を行っています。必要なアクションを実行するには、sciruby と iruby を使用する必要があります。

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

この問題の解決を手伝ってください

4

1 に答える 1

0

私は Python を初めて使用し、Ruby については何も知りませんが、ipython ノートブックが非常に優れているので、別のカーネルで試してみたいと思います。そのため、
Ruby をインストールしたところ、同じ問題が発生し、Google は私を助けてくれませんでした。 .(@!、方法を見つけました:
C:\Ruby22-x64\lib\ruby\gems\2.2.0\gems\rbczmq-1.7.9\ext\rbczmq\extconf.rb
を編集して GNU_CHAIN = 1 を一番上に追加します
cd C:\Ruby22-x64\lib\ruby\gems\2.2.0\gems\rbczmq-1.7.9
gem spec ....\cache\rbczmq-1.7.9.gem --ruby > ....\ specification\rbczmq-1.7.9.gem.gemspec
gem build ....\specifications\rbczmq-1.7.9.gem.gemspec
現在、gem リストには「rbczmq (1.7.9)」と表示されています

私は ruby​​ について何も知らなかったので、rbczmq が実際に機能するかどうかはわかりません
。「iruby ノートブック」が正常に起動し、新しいカーネル「ruby 2.2.2」が追加されましたが、それを選択すると「カーネル エラー」と表示されます
。 「OS エラー: [WinError 193]」

今のところ私がお手伝いできるのはこれだけですので、今すぐ解決して、新しいカーネルにそのトリックを実行させる方法を教えてください。

于 2015-08-22T15:36:12.317 に答える