为什么 Ruby 或 RVM 在 Linux Mint 上似乎停留在 1.8.7?

发布于 2024-12-21 22:03:23 字数 697 浏览 0 评论 0原文

我使用的是 Linux Mint 12。

我安装了 RVM 并运行了这些命令:

rvm 1.9.2

rvm --default use 1.9.2

但 ruby​​ -v 仍然输出 ruby​​ 1.8.7。

sudo apt-get install ruby​​1.9.2 返回说 1.9.1 是最新版本。

如何让 Ruby 在 1.9.2 上运行?

当我按照“Ruby 1.9.2 在使用 RVM 安装后不断恢复到 1.8.7",它输出:

rvm rubies

   ruby-1.8.7-p352 [ x86_64 ]
=> ruby-1.9.2-p290 [ x86_64 ]

所以我想我必须有配置问题。我的操作系统似乎默认使用了错误的 Ruby 版本。

我跑:

sudo apt-get remove ruby

但是没有任何改变。

I am on Linux Mint 12.

I installed RVM and ran these commands:

rvm 1.9.2

rvm --default use 1.9.2

but ruby -v still outputs ruby 1.8.7.

sudo apt-get install ruby1.9.2 returns saying 1.9.1 is the latest version.

How do I get Ruby to be running on 1.9.2?

When I run rvm list like suggested at "Ruby 1.9.2 keeps reverting back to 1.8.7 after installing it using RVM", it outputs:

rvm rubies

   ruby-1.8.7-p352 [ x86_64 ]
=> ruby-1.9.2-p290 [ x86_64 ]

So I think I must have a configuration issue. My OS seems to be defaulting to the wrong version of Ruby.

I ran:

sudo apt-get remove ruby

But had no change.

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

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

发布评论

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

评论(2

小ぇ时光︴ 2024-12-28 22:03:23

您添加字符串 [[ -s "$HOME/.rvm/scripts/rvm" ]] &&将“$HOME/.rvm/scripts/rvm”源到~/.bashrc?首先,显示您的 echo $PATH 输出。如果这看起来像(rvm 路径在系统路径之前):

/home/ayunin/.rvm/gems/ruby-1.9.3-rc1/bin:/usr/bin:/bin:/usr/bin/X11

那么您就遇到了magick。重新启动终端,并显示 ruby​​ 版本。如果不起作用 - 您可以启动 rvm implode 并重新安装所有内容,是的。

You add string [[ -s "$HOME/.rvm/scripts/rvm" ]] && source "$HOME/.rvm/scripts/rvm" into ~/.bashrc? First, show your echo $PATH output. If this looks like (rvm paths before system paths):

/home/ayunin/.rvm/gems/ruby-1.9.3-rc1/bin:/usr/bin:/bin:/usr/bin/X11

Then you ran into the magick. Restart your terminal, and show ruby version. If does not work - you can launch rvm implode and reinstall all, yes.

夢归不見 2024-12-28 22:03:23

看起来 Linux Mint 12 已经安装了 ruby​​-rvm(至少在我的机器上),所以这可能是一个问题吗?

您可以坚持这样做,但我认为您需要使用 usermod -a -G username rvm 将您的用户名添加到 rvm 组。

我完全删除了 ruby-rvm (使用 apt-get),然后按照 https://rvm.beginrescueend.com/rvm/install/ 对于“单用户”,因此我的所有 rvm 文件都位于 ~/.rvm/bin/rvm
我在 .bashrc 中添加了 rvm 行并使用 1type rvm | 进行了测试头-1`。

之后rvm install 1.9.2就可以工作了,我将它安装到~/.rvm/rubies/ruby-1.9.2

之后rvm use --default 1.9.2 全部设置正确。

It looks like Linux Mint 12 has ruby-rvm already installed (at least on my machine) so could this be a problem?

you can stick with that but then I think you will need to add your username to the rvm group with usermod -a -G username rvm.

I removed removed ruby-rvm completely (with apt-get) and then followed the installation instructions from https://rvm.beginrescueend.com/rvm/install/ for 'single user' thus all my rvm files are located in ~/.rvm/bin/rvm
I added the line for rvm in my .bashrc and tested with 1type rvm | head -1`.

After that rvm install 1.9.2 just worked and I installed it into ~/.rvm/rubies/ruby-1.9.2

After that rvm use --default 1.9.2 set all up correctly.

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