How do I uninstall Ruby on Rails and do a clean install?

陌路散爱 提交于 2019-12-02 18:21:33

Try this:

rvm get head
rvm reset
rvm remove ... # take the output of rvm list and do rvm remove for each item in the list
rvm cleanup
rvm repair
rvm notes # make sure that you've got all the dependencies mentioned in the output from this command
rvm install ... # reinstall your rubies

This is likely overkill, but it should get you close to a known-good configuration. If it doesn't, try:

rvm implode

That will completely remove RVM and you can start over from scratch.

If none of this works or you are still confused, paste some of the error messages here and tell more about your operating system and configuration details.

Good luck!

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!