为什么 Ruby 或 RVM 在 Linux Mint 上似乎停留在 1.8.7?
我使用的是 Linux Mint 12。
我安装了 RVM 并运行了这些命令:
rvm 1.9.2
rvm --default use 1.9.2
但 ruby -v 仍然输出 ruby 1.8.7。
sudo apt-get install ruby1.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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您添加字符串
[[ -s "$HOME/.rvm/scripts/rvm" ]] &&将“$HOME/.rvm/scripts/rvm”源到
~/.bashrc
?首先,显示您的echo $PATH
输出。如果这看起来像(rvm 路径在系统路径之前):那么您就遇到了
magick
。重新启动终端,并显示 ruby 版本。如果不起作用 - 您可以启动rvm implode
并重新安装所有内容,是的。You add string
[[ -s "$HOME/.rvm/scripts/rvm" ]] && source "$HOME/.rvm/scripts/rvm"
into~/.bashrc
? First, show yourecho $PATH
output. If this looks like (rvm paths before system paths):Then you ran into the
magick
. Restart your terminal, and show ruby version. If does not work - you can launchrvm implode
and reinstall all, yes.看起来 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/rvmI 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.