17

こんにちは私はバンドルのインストール中にこのエラーが発生しました...

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

        /home/rajendran/.rvm/rubies/ruby-1.9.3-p374/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:
    --with-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=/home/rajendran/.rvm/rubies/ruby-1.9.3-p374/bin/ruby
extconf.rb:15:in `<main>': undefined method `include_path' for Libv8:Module (NoMethodError)


Gem files will remain installed in /home/rajendran/.rvm/gems/ruby-1.9.3-p374/gems/therubyracer-0.10.1 for inspection.
Results logged to /home/rajendran/.rvm/gems/ruby-1.9.3-p374/gems/therubyracer-0.10.1/ext/v8/gem_make.out
An error occurred while installing therubyracer (0.10.1), and Bundler cannot continue.
Make sure that `gem install therubyracer -v '0.10.1'` succeeds before bundling.

どうすればこれを解決できますか..?
注:OS-Ubuntu 12.10

4

4 に答える 4

46

次のように試すことができます。

$ gem uninstall libv8
$ gem install therubyracer

私がエラーを受け取ったとき、それは私の仕事になります。

P.SあなたはあなたのOSに言及する必要があります

于 2013-02-15T11:23:05.920 に答える
4

@Sriに似ていますが、少し異なります。忘れないように貼り付けてください:os --xubuntu 12.10

  1. gem installtherubyracer
  2. gemアンインストールlibv8
  3. 宝石はtherubyracerをアンインストールします
  4. gem install therubyracer-v'0.9.9'バージョンのこのgemは非常に重要でした...
于 2013-04-22T07:51:08.443 に答える
1

sudo apt-get installg++が仕事をしました...

それが誰かを助けることを願っています

于 2013-08-15T08:58:16.423 に答える
1

再インストールせずに別のソリューション。(他のRailsアプリケーションが異なるバージョンを使用する場合):

1.インストールされているgemバージョンを一覧表示します。

$ gem list -l therubyracer    

*** LOCAL GEMS ***
therubyracer (0.12.0)

2.インストールされているgemの1つを使用するようにGemfileを変更します。

# Gemfile
gem 'therubyracer', '0.12.0', platforms: :ruby

終わり。「バンドルインストール」を試してみると、成功通知が表示されます。

于 2014-01-30T02:27:22.320 に答える