ruby – 如何卸载RVM gem?

前端之家收集整理的这篇文章主要介绍了ruby – 如何卸载RVM gem?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
奇怪……但这就是我得到的:
$gem list | grep rvm
>> rvm (1.11.3.3)
$gem uninstall rvm
>> INFO:  gem "rvm" is not installed

怎么可能呢?这个问题的根源可能源于我下载最新的RVM并发现它不能与最新版本的POW一起使用.因此,我不得不内爆RVM并重新安装旧版本.从那以后,当我进行帽子部署时,我得到了经典:

`<top (required)>': RVM - Capistrano integration was extracted to a separate gem,install: `gem install rvm-capistrano` and remove the `$LOAD_PATH.unshift` line,note also the 'set :rvm_type,:user' is now the default (instead of :system). (RuntimeError)

有任何想法吗?

解决方法

你是宝石吗?如果是这样,那个gem可能在解释器的未命名gemset或全局gemset中.如果是这样,试试吧
rvm use 1.9.3
gem uninstall rvm

要么

rvm use 1.9.3@global
gem uninstall rvm
原文链接:https://www.f2er.com/ruby/267926.html

猜你在找的Ruby相关文章