卸载RVM时出现问题

Bac*_*cko 9 ruby rubygems uninstall rvm

我正在运行Ubuntu 10.04 Lucid,我可能错误地卸载了RVM,现在它接缝不能从系统中完全删除.现在我想再次安装,但我遇到了麻烦.

当我尝试执行某些命令行时,会发生奇怪的输出:

# Note that following command lines don't output the version
# (between the word "version" and the word "is") as it should be.

$ rvm
$ rvm -v
> -bash: /usr/local/rvm/scripts/base: No such file or directory
> A RVM version  is installed yet 1.10.3 is loaded.
>  Please do one of the following:
>   * 'rvm reload'
>   * open a new shell


# Even if I use the 'cd' command I have problems...

$ cd ..
> -bash: /usr/local/rvm/scripts/initialize: No such file or directory
> -bash: /usr/local/rvm/scripts/hook: No such file or directory
Run Code Online (Sandbox Code Playgroud)

这可能意味着即使Ruby接口也在运行,也无法正确删除RVM:

$ which ruby
/usr/local/bin/ruby
$ ruby -v
ruby 1.9.2p290 (2011-07-09 revision 32553) [i686-linux]
Run Code Online (Sandbox Code Playgroud)

那么,我可以做些什么来彻底删除/卸载RVM?


UPDATE

我解决了部分问题(或者,也许是所有问题):那些(那些)与Phusion Passenger有关,它仍在加载与RVM管理的Ruby版本相关的旧路径.

mpa*_*pis 9

首先尝试echo $rvm_path- 如果它显示任何东西 - rm -rf

第二:

sudo rm -rf /ust/local/rvm /etc/rvmrc /etc/profile.d/rvm.sh ~/.rvm*
Run Code Online (Sandbox Code Playgroud)

接下来检查ls -l /usr/local/bin | grep rvm这将显示rvm的链接 - rm -rf他们

最后which rvm- 如果它显示任何内容尝试检查此路径并删除至少此文件.


asi*_*rna 5

RVM installs everything into ~/.rvm. To remove RVM from your system run 'rm -rf ~/.rvm'.
Run Code Online (Sandbox Code Playgroud)

请参阅.而其中的一切安装?