how to make a gemset in RVM the default?

后端 未结 6 890
面向向阳花
面向向阳花 2020-12-28 13:35

I\'m trying to make a gemset the default whenever I start a new terminal in Mac OS X:

rvm use 1.9.3@rails3.2 --create --default

That seems

6条回答
  •  长发绾君心
    2020-12-28 13:44

    rubyracer related issue might as well come with libv8. To get around this issue: Step 1: Run the following command to uninstall any existing installation of libv8:

    gem uninstall libv8
    

    Install rubyracer by running the following command:

    gem install therubyracer -v 0.12.2
    

    Install libv8 by running the following command:

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

    Try bundle install now:

    bundle install
    

提交回复
热议问题