在安装 RubyGems 1.7.2 时,它安装了 1.3.5

发布于 2024-11-02 21:45:08 字数 472 浏览 0 评论 0原文

我刚刚完成了 Ruby 1.7.2 的安装,由于某种原因我最终得到了 1.3.5 版本

所以现在当我执行此命令时:

gem --version
1.3.5

我的想法是我必须清除 1.3.5 版本并安装 1.7.2新鲜正确吗?

有趣的是,我的文件系统上确实有 1.7.2,地址为

/usr/local/rubygems-1.7.2

How do I un-confused the system to see the right version?

当我尝试通过这样做安装导轨时,整个问题就出现了:

gem install rails
ERROR:  Error installing rails:
    bundler requires RubyGems version >= 1.3.6

I just went through the install of Ruby 1.7.2 and for some reason I ended up with version 1.3.5

So now when I do this command:

gem --version
1.3.5

My thinking is that I have to purge the 1.3.5 version and install the 1.7.2 fresh correct?

The funny thing is that I do have 1.7.2 on my file system at

/usr/local/rubygems-1.7.2

How do I un-confuse the system into seeing the right version?

The whole issue is stemming when I try to install rails by doing this:

gem install rails
ERROR:  Error installing rails:
    bundler requires RubyGems version >= 1.3.6

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

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

发布评论

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

评论(2

秋日私语 2024-11-09 21:45:08

尝试按照以下步骤操作:

  • 删除版本 1.7.2
  • sudo apt-get --purge remove ruby​​gems 以删除 1.3 版本
  • 现在使用之前下载的软件包重新安装 1.7.2

Try following these steps:

  • Remove version 1.7.2
  • sudo apt-get --purge remove rubygems to remove the 1.3 version
  • Now re-install 1.7.2 using the downloaded package you had before
夏尔 2024-11-09 21:45:08

尝试运行 which gem 以查看 gem 引用的位置。您可能需要将 gem 重新链接到新的。

或者您可以尝试使用gem update --system进行升级

Try running which gem to see where the gem is referencing. You might need to re-link gem to the new one.

Or you can try to upgrade using gem update --system

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