Ubuntu

正在刪除 ~/.rvm/ 執行全新安裝所需的所有內容

  • February 12, 2012

我已經在 ~/.rvm/ 下安裝了 ruby​​ 和 gems,現在我想重新安裝所有的東西。

此文件夾之外是否有任何修改/連結?那麼,只需刪除文件夾 ~/.rvm/ 就可以讓我重新開始?

請執行

rvm implode

這就是內爆標誌的作用

implode    - removes the rvm installation completely.
              This means everything in $rvm_path (~/.rvm || /usr/local/rvm).
              This does not touch your profiles. However, this means that you
          must manually clean up your profiles and remove the lines which source RVM.

刪除 .bash_profile 中源 rvm 安裝的行(我假設您使用的是 bash)。

如果您想重新開始,刪除它是安全的~/.rvm……但根據我的經驗,這主要不是問題。

非常重要的是在 rc 文件中獲得正確的 rvm 初始化,您可以使其使用:

rvm get head --auto

引用自:https://serverfault.com/questions/355067