ruby-on-rails – 如何卸载Ruby on Rails并执行干净的安装?

前端之家收集整理的这篇文章主要介绍了ruby-on-rails – 如何卸载Ruby on Rails并执行干净的安装?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我正在关注Rails教程.我有RVM的版本问题,并且收到很多错误.我想重新开始一个干净的Ruby,Rails,Gemfiles等版本.

任何人都可以给我一些关于如何卸载Ruby-on-Rails环境的简要说明?

解决方法

尝试这个:
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

这可能是过度的,但它应该让您接近已知的良好配置.如果没有,请尝试:

rvm implode

这将完全删除RVM,您可以从头开始.

如果这些都不起作用或者您仍然感到困惑,请在此处粘贴一些错误消息,并详细介绍您的操作系统和配置详细信息.

祝你好运!

原文链接:https://www.f2er.com/ruby/273668.html

猜你在找的Ruby相关文章