我按照RVM安装手册,发现我的系统符合最低安装要求。
我将用户包含在/etc/sudoers
。
然后我跑了:
\curl -L https://get.rvm.io | bash-s stable - autolibs = homebrew - rails
但安装过程已返回:
% Total % Received % Xferd Average Speed Time Time Time Current
Dload Upload Total Spent Left Speed
0 0 0 0 0 0 0 0 --:--:-- --:--:-- --: 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:100 184 100 184 0 0 156 0 0:00:01 0:00:01 --:--:-- 229
46 15779 46 7325 0 0 4433 0 0:00:03 0:00:01 0:100 15779 100 15779 0 0 9547 0 0:00:01 0:00:01 --:--:-- 8255k
Please read and follow further instructions.
Press ENTER to continue.
bash: line 584: /usr/local/rvm/RELEASE: Permission denied`
我做错了什么?我还阅读了这个论坛上的其他评论,说从控制台以用户身份安装RVM是正确的,所以任何帮助都将不胜感激。
答案 0 :(得分:3)
您似乎没有以root身份运行命令。
尝试sudo curl -L https://get.rvm.io | bash-s stable - autolibs = homebrew - rails
。
编辑:
好的,我刚看到这个post。 这个问题可能是由于最老的rvm安装并解决它,您需要清理最旧的安装。
要做到这一点:sudo rm -rf /etc/rvmrc /etc/profile.d/rvm.sh /usr/local/rvm
然后,重新运行安装命令行。
希望它能奏效。