How to remove RVM (Ruby Version Manager) from my system

前端 未结 12 1417
爱一瞬间的悲伤
爱一瞬间的悲伤 2020-11-22 07:53

How can I remove RVM (Ruby Version Manager) from my system?

12条回答
  •  抹茶落季
    2020-11-22 08:17

    Run:

    rvm implode
    

    Now you need to uninstall the RVM gem using:

    gem uninstall rvm
    

    Check if there are any remaining RVM files in your home directory, if yes remove them.

    Go to the home directory and list all hidden files:

    ls -a
    
    rm  .rvm
    rm  .rvmrc
    

提交回复
热议问题