How to fix libv8 error from Gemfile on Mavericks?

前端 未结 5 1965
灰色年华
灰色年华 2021-02-04 05:14

When I run bundle install I get

An error occurred while installing libv8 (3.11.8.17), and Bundler cannot continue.
Make sure that `gem install libv8         


        
5条回答
  •  Happy的楠姐
    2021-02-04 06:06

    You need to reinstall libv8

    $ gem uninstall libv8
    $ brew install v8
    $ gem install therubyracer
    

提交回复
热议问题