如何卸载Ruby on Rails并进行全新安装?

时间:2011-01-03 02:51:18

标签: ruby-on-rails ruby install rvm

我正在关注Rails教程。我遇到了RVM的版本问题,并且遇到了很多错误。我想重新开始使用Ruby,Rails,Gemfiles等的干净版本。

有人能给我一些关于如何卸载Ruby-on-Rails环境的简要说明吗?

1 个答案:

答案 0 :(得分:37)

试试这个:

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,您可以从头开始。

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

祝你好运!