1

aptosid (つまり、debian sid) に ruby​​ 1.9.2 の rvm インストールを使用して、バンドラー経由で linecache19 gem をインストールできません。

私はルビーを初めて使用しますが、レールと多数の宝石をインストールできたので、私のルビーのインストールは明らかに完全に誤った構成ではありません。

私が得る出力は次のとおりです。

    Installing linecache19 (0.5.12) with native extensions 
Gem::Installer::ExtensionBuildError: ERROR: Failed to build gem native extension.

        /home/caz/.rvm/rubies/ruby-1.9.2-p320/bin/ruby extconf.rb                 
*** 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:                                                   

/home/caz/.rvm/rubies/ruby-1.9.2-p320/lib/ruby/site_ruby/1.9.1/rubygems/custom_require.rb:36:in `require': no such file to load -- openssl (LoadError)              
ms/custom_require.rb:36:in `require'                                              
in `<top (required)>'                                                             
ms/custom_require.rb:36:in `require'
        from /home/caz/.rvm/rubies/ruby-1.9.2-p320/lib/ruby/site_ruby/1.9.1/rubygems/custom_require.rb:36:in `require'
        from /home/caz/.rvm/gems/ruby-1.9.2-p320/gems/ruby_core_source-0.1.5/lib/contrib/uri_ext.rb:11:in `<top (required)>'
        from /home/caz/.rvm/rubies/ruby-1.9.2-p320/lib/ruby/site_ruby/1.9.1/rubygems/custom_require.rb:36:in `require'
        from /home/caz/.rvm/rubies/ruby-1.9.2-p320/lib/ruby/site_ruby/1.9.1/rubygems/custom_require.rb:36:in `require'
        from /home/caz/.rvm/gems/ruby-1.9.2-p320/gems/ruby_core_source-0.1.5/lib/ruby_core_source.rb:6:in `<top (required)>'
        from <internal:lib/rubygems/custom_require>:33:in `require'
        from <internal:lib/rubygems/custom_require>:33:in `rescue in require'
        from <internal:lib/rubygems/custom_require>:29:in `require'
        from extconf.rb:2:in `<main>'


Gem files will remain installed in /home/caz/.rvm/gems/ruby-1.9.2-p320/gems/linecache19-0.5.12 for inspection.
Results logged to /home/caz/.rvm/gems/ruby-1.9.2-p320/gems/linecache19-0.5.12/ext/trace_nums/gem_make.out
An error occured while installing linecache19 (0.5.12), and Bundler cannot continue.
Make sure that `gem install linecache19 -v '0.5.12'` succeeds before bundling.

私は通常提案されている解決策を試しました:

 gem install ruby-debug19 -- --with-ruby-include=$rvm_path/src/ruby-1.9.2-p320  

次のように --force オプションを使用しても成功しませんでした:

ruby の明示的なバージョンを使用して、root として rvm を使用せずに Gem をインストールする

出力で報告されたパスに「1.9.1」が存在することに混乱しています。これは、debian ruby​​ パッケージの影響であり、問​​題の原因なのだろうかと思います。

ps これはすべて、Smallest Federated Wiki のインストールを支援するためのものです。読者の皆様には、このプロジェクトをご覧いただくことをお勧めします。

4

1 に答える 1

2

端末に入力しますrvm requirements

次のようなものを提供します

Additional Dependencies:
# For Ruby / Ruby HEAD (MRI, Rubinius, & REE), install the following:
  ruby: /usr/bin/apt-get install build-essential openssl libreadline6 libreadline6-dev curl git-core zlib1g zlib1g-dev libssl-dev libyaml-dev libsqlite3-0 libsqlite3-dev sqlite3 libxml2-dev libxslt-dev autoconf libc6-dev ncurses-dev automake libtool bison subversion

コマンドをコピーして実行してください。ruby の実行に必要なすべての依存関係をインストールします。

于 2012-07-10T07:27:52.577 に答える