0

デバッガーをインストールしてrubyファイルで動作させることができません。誰かが問題が何であるかを見ることができますか?

file.rbの先頭で「requiredebugger」を実行しましたが、実行するとこのエラーが発生しましたruby file.rb

rubygems/custom_require.rb:36:in `require': cannot load such file -- debugger (LoadError)

私はgem install debugger自分のシステムで実行しましたが、このエラーメッセージが表示されました。

ERROR:  Error installing debugger:
    ERROR: Failed to build gem native extension.

        /Users/mm/.rvm/rubies/ruby-1.9.3-rc1/bin/ruby extconf.rb
checking for vm_core.h... no
checking for vm_core.h... no
Makefile creation failed
**************************************************************************
No source for ruby-1.9.3-rc1 provided with debugger-ruby_core_source gem.
**************************************************************************
*** 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=/Users/michaeljohnmitchell/.rvm/rubies/ruby-1.9.3-rc1/bin/ruby
    --with-ruby-dir
    --without-ruby-dir
    --with-ruby-include
    --without-ruby-include=${ruby-dir}/include
    --with-ruby-lib
    --without-ruby-lib=${ruby-dir}/lib

gem環境を実行すると、

  • RUBYGEMSバージョン:1.8.10
    • RUBYバージョン:1.9.3(2011-09-23パッチレベル-1)[x86_64-darwin10.8.0]
    • インストールディレクトリ:/Users/michaeljohnmitchell/.rvm/gems/ruby-1.9.3-rc1@global
    • RUBY実行可能ファイル:/Users/michaeljohnmitchell/.rvm/rubies/ruby-1.9.3-rc1/bin/ruby
    • 実行可能ディレクトリ:/Users/michaeljohnmitchell/.rvm/gems/ruby-1.9.3-rc1@global/bin
    • RUBYGEMSプラットフォーム:
    • ルビー
    • x86_64-ダーウィン-10
    • GEMパス:
      • /Users/mm/.rvm/gems/ruby-1.9.3-rc1@global
    • GEM構成:
      • :update_sources => true
      • :verbose => true
      • :benchmark => false
      • :backtrace => false
      • :bulk_threshold => 1000
      • :sources => ["http://rubygems.org/"、 "http://gems.github.com/"]
    • リモートソース:
4

1 に答える 1

3

デバッガーがサポートしていない古いプレリリースバージョンのRubyを使用しています。Ruby 1.9.3の実際のリリースバージョンはしばらく前からリリースされており、Ruby 1.9.3-p194(デバッガーがサポート)にアップグレードするとインストールできるようになります。

于 2012-10-05T00:51:49.167 に答える