在 OS X 上重新安装 Ruby

发布于 2024-10-20 18:50:49 字数 122 浏览 0 评论 0原文

我已经把我的 Snow Leopard 机器上的 Ruby 弄乱了。我已经设法引入了各种各样的问题,但我很难清理这些问题。

要让我重新开始使用 Ruby,需要采取哪些步骤?我对编程相当陌生,所以我需要为我详细说明!

I've gone and messed up Ruby on my Snow Leopard Machine. I've managed to introduce all sorts of issues and I'm having a hard time cleaning things up.

What are the steps to get me back to square one with Ruby? I'm fairly new to programming so I need it spelled out for me!

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

旧人哭 2024-10-27 18:50:49

听起来您可能想要做的就是清除系统 Ruby 中所有全局安装的 gem。这可以通过运行以下命令来完成:

sudo rm -rf /Library/Ruby/Gems/*

这将保留 OS X 附带的所有 gem(这是一件好事,因为某些应用程序可能会假设它们已安装)。

正如 Macarthy 所说,我还强烈建议使用 Ruby 版本管理器(例如 rbenvRVM)以更轻松地安装、删除和管理 Ruby 版本。

It sounds like what you probably want to do is clear out all your globally installed gems in the system Ruby. This can be done by running the following:

sudo rm -rf /Library/Ruby/Gems/*

This will leave all the gems that come with OS X (which is a good thing, since some apps may assume they're installed).

As macarthy said, I also highly recommend using a Ruby version manager (e.g. rbenv or RVM) to more easily install, remove, and manage Ruby versions.

梦言归人 2024-10-27 18:50:49

我的建议是忘记你拥有的东西并使用 RVM

你基本上可以忽略你拥有的东西然后安装。

My suggestion would be to forget about what you have and use RVM

you can basically ignore what you have installed then.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文