web-dev-qa-db-ja.com

therubyracer(0.10.1)のインストール中にエラーが発生しました

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

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

16
Raj Adroit

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

$ gem uninstall libv8
$ gem install therubyracer

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

P.SOSについて言及する必要があります

43
Learner

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

  1. gem installtherubyracer
  2. gemアンインストールlibv8
  3. 宝石はtherubyracerをアンインストールします
  4. gem install therubyracer -v'0.9.9 'バージョンのこのgemは非常に重要でした...
4
Elmor

再インストールせずに別のソリューション。 (他の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

完了しました。 「バンドルインストール」を試してみると、成功が通知されます。

Sudo apt-get install g ++がその仕事をしました...

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

1
mArtinko5MB