2016-06-22 16 views
0

Rubyの問題を解決するための学習を開始したので、私はRubyに関するメモを書くことができるように、私のJupyterにIRubyカーネルを追加しようとしています。 IRuby docで は、私は、次のコマンドを行うことになっています:失敗:autogenエラーのためgem install rbczmq

gem install rbczmq 
gem install iruby 

しかし、私はgem install rbczmqを行うときに私が許可拒否を取得します。私はsudo gem install rbczmqを行うと、私は次を得る:

Building native extensions. This could take a while... 
ERROR: Error installing rbczmq: 
    ERROR: Failed to build gem native extension. 

    current directory: /var/lib/gems/2.3.0/gems/rbczmq-1.7.9/ext/rbczmq 
/usr/bin/ruby2.3 -r ./siteconf20160623-27886-pogml8.rb extconf.rb 
"./autogen.sh" 
autogen.sh: error: could not find libtool. libtool is required to run  autogen.sh. 
ZeroMQ autogen failed! 
*** 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=/usr/bin/$(RUBY_BASE_NAME)2.3 
    --with-system-libs 
    --without-system-libs 


extconf failed, exit code 1 

Gem files will remain installed in /var/lib/gems/2.3.0/gems/rbczmq-1.7.9  for inspection. 
Results logged to /var/lib/gems/2.3.0/extensions/x86_64- linux/2.3.0/rbczmq-1.7.9/gem_make.out 

私はこの問題を解決し、私のJupyterにIRubyをインストールする方法を知っていただきたいと思いますか?ありがとうございました!

答えて

0

私は同じ問題を抱えていました。数時間の試行錯誤の末、私はついにそれをインストールすることができました。

私は、これはご返信用

+0

感謝を役に立てば幸いsudo apt-get install libtool-binを使用して、sudo gem install rbczmq

。私は実際にlibtool-binをインストールしましたが、それでも動作しません。 – Nahua

+0

libtoolもインストールしましたか? 'sudo apt-get install libtool autogenf autoconf automake'を試してみてください。もしあなたがすでにそれらを失っているなら。また、私はrbczmqに問題があったので、最後に 'ffi-rzmq'を使用しました –

+0

もう一度ありがとうリカルド。あなたが言ったことをして、今Irubyをインストールしました。しかし、私が 'iruby'または' iruby notebook'をタイプすると、 "/var/lib/gems/2.3.0/gems/iruby-0.2.9/lib/iruby/command.rb:78:in" ':そのようなファイルやディレクトリはありません - ipython(Errno :: ENOENT)は間違いです。私がこれをどのように修正できるか知っていれば尋ねてもいいですか? – Nahua

関連する問題