rbenv install ruby BUILD FAILED

后端 未结 1 595
眼角桃花
眼角桃花 2020-12-19 04:08

I\'m quite new to rbenv let alone ruby and having some difficulty diagnosing the following installation failure:

rbenv install 2.0.0-p0
Downloading yaml-0.1.         


        
相关标签:
1条回答
  • 2020-12-19 04:47

    There seems to be a problem with the Homebrew package "readline".

    brew uninstall readline
    brew install https://raw.githubusercontent.com/Homebrew/homebrew/0181c8a1633353affefabe257c170edbd6d7c008/Library/Formula/readline.rb
    brew pin readline
    

    Then retry installing ruby with

    rbenv install 2.0.0-p0
    

    Answer found thanks to https://github.com/sstephenson/rbenv/issues/579#issuecomment-41122071

    0 讨论(0)
提交回复
热议问题