Can't install Ruby 2.0.0-p0 with RVM. Error running 'make -j8'

前端 未结 2 1760
甜味超标
甜味超标 2020-12-19 05:21

I tried to install Ruby 2 using RVM today and it failed. I updated RVM, all my brew formulas and whatnot. This is what I get:

admin:/$ rvm install ruby-2.0.0         


        
相关标签:
2条回答
  • 2020-12-19 06:09

    Remove lines with 'rvm_autolibs_flag=' from '/etc/rvmrc', please clean it manually, then

    rvm get stable
    rvm autolibs enable
    rvm install ruby || rvm install ruby --with-gcc=clang
    
    0 讨论(0)
  • 2020-12-19 06:25

    Make sure to install latest version of Command Line Tools for Xcode and follow this instruction:

    rvm get stable
    rvm autolibs enable
    rvm install ruby || rvm install ruby --with-gcc=clang
    
    0 讨论(0)
提交回复
热议问题