0

我按照 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`

我做错了什么?我还阅读了这个论坛上的其他评论,说从控制台以用户而不是 root 身份安装 RVM 是正确的,因此将不胜感激任何帮助。

4

1 回答 1

3

看来您没有以 root 身份运行该命令。

试试sudo curl -L https://get.rvm.io | bash-s stable - autolibs = homebrew - rails

编辑:

好的,我才看到这个帖子。此问题可能是由于最旧的 rvm 安装造成的,要解决此问题,您需要清理最旧的安装。

为此:sudo rm -rf /etc/rvmrc /etc/profile.d/rvm.sh /usr/local/rvm 然后,重新运行您的安装命令行。

希望它会奏效。

于 2013-09-24T16:23:52.750 回答