在 Mac OS X 上尝试安装 RVM 时出现错误

在 Mac OS X 上尝试安装 RVM 时出现错误

我还可以尝试什么?

user15:~ durrantm$ bash < <(curl -s https://rvm.beginrescueend.com/install/rvm)
user15:~ durrantm$ cat .bash_profile 
[[ -s "$HOME/.rvm/scripts/rvm" ]] && . "$HOME/.rvm/scripts/rvm" # Load RVM function
user15:~ durrantm$ type rvm | head -n1
-bash: type: rvm: not found
user15:~ durrantm$ rvm -v
-bash: rvm: command not found
user15:~ durrantm$

这也没有帮助...

sudo gem install rvm -s http://gemcutter.org/ Password: ERROR: While executing gem ... (Gem::RemoteSourceException) HTTP Response 302 fetching http://gemcutter.org/yaml users-powerbook-g4-15:~ durrantm$

答案1

sudo rm -rf $HOME/rvm-installer $HOME/.rvm $HOME/.rvmrc /etc/rvmrc /etc/profile.d/rvm.sh /usr/local/rvm /usr/local/bin/rvm*

sudo rm -f /usr/local/share/man/man1/rvm.1*

bash < <(curl -s https://raw.github.com/wayneeseguin/rvm/master/binscripts/rvm-installer )

echo '[[ -s "$HOME/.rvm/scripts/rvm" ]] && . "$HOME/.rvm/scripts/rvm" # Load RVM function' >> ~/.bash_profile

logout

重新登录然后执行

type rvm | head -n1

应该返回

rvm 是一个函数

您现在应该可以毫无问题地使用 RVM。请参阅https://rvm.beginrescueend.com/rvm/install/以及关于如何使用宝石集和安装额外的红宝石等的附加文档。玩得开心!

答案2

之前对我有用。可能是最新的 RVM 版本的问题...尝试以前的 RVM 版本

看起来你对 .bashrc 做了 RVM 所需的修改?进行这些更改后,你需要启动一个新的 Bash shell例如打开一个新的终端窗口

相关内容