安装RVM - 无输出,失败

时间:2017-02-08 01:05:20

标签: ruby-on-rails ruby rvm

我在MacOS Sierra上

brew医生说没问题

已安装xcode / gcc

我的第一个问题是no response when I use curl

here is what I get when I trace the installation

安装完成后,我重新启动终端并尝试使用' source~ / .rvm / scripts / rvm',但是我收到错误'没有这样的文件或目录&#39 ;

我试图删除目录并重新安装几次,但没有运气。

编辑:如果我不使用-sSL,我会得到两行输出,但仍然没有运气:imgur.com/a/bxyLy

EDIT2:https://github.com/rvm/rvm/issues/3910允许安装

1 个答案:

答案 0 :(得分:-2)

使用rbenv而不是rvm,rbenv最适合rvm。

自制软件设置:

ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)"

rbenv设置:

brew install rbenv ruby-build

# Add rbenv to bash so that it loads every time you open a terminal
echo 'if which rbenv > /dev/null; then eval "$(rbenv init -)"; fi' >> ~/.bash_profile
source ~/.bash_profile

# Install Ruby
rbenv install 2.4.0
rbenv global 2.4.0
ruby -v