bundle install issue with libv8 and rails

前端 未结 6 488

I\'m having issues with the libv8 gem with ruby 1.9.3p0 (2011-10-30 revision 33570) [x86_64-darwin10.8.0]. gem install libv8 works fine and I have



        
6条回答
  •  眼角桃花
    2020-12-11 07:58

    You can actually install that version on Mavericks:

    gem install libv8 -v 3.11.8.17 -- --with-system-v8

    You can provide whatever libv8 gem version you want to install ..

    After this you might facing issue with installing therubyracer then

    Update Version of Gemfile to point to the last version like so:

    gem "therubyracer", "~> 0.10.2"

    and I was able to successfully install the gem.

    If you want to manually install the gem, you can use:

    gem install therubyracer --version "~> 0.10.2"

提交回复
热议问题