在安裝Rvm之后安裝Ruby時(shí)遇到錯(cuò)誤
錯(cuò)誤信息:Error running 'requirements_osx_brew_libs_install automake
這個(gè)問(wèn)題應(yīng)該是沒(méi)有安裝automake的問(wèn)題
那么我們先安裝一下automake
命令:brew install automake
如果出現(xiàn)這個(gè)錯(cuò)誤:You must `brew link autoconf` before automake can be installed
那就要輸入下面兩條命令:
brew link --overwrite --dry-run autoconf
brew link --overwrite autoconf
這時(shí)候再輸入brew install automake安裝automake即可成功
再次安裝Ruby:
rvm install 2.3.1