有人知道如何在 Ubuntu 11.10 上正确卸载 Ruby 1.8.7 并安装 Ruby 1.9.2?
我已经彻底搜索过,但找到的所有教程均无用。
此外,我花了很长时间尝试让 RVM 工作,但使用起来很麻烦。此外,我很少使用旧版本。
更新输出:
which ruby
:
/usr/local/bin/ruby
ls -l /usr/local/bin/ruby
:
lrwxrwxrwx 1 root root 16 2011-10-17 21:20 /usr/local/bin/ruby -> /usr/bin/ruby1.8
ls -l /etc/alternatives/ruby
:
lrwxrwxrwx 1 root root 18 2011-12-30 17:35 /etc/alternatives/ruby -> /usr/bin/ruby1.9.1
echo $PATH
:
/usr/lib/lightdm/lightdm:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/games
顺便说一句,当我查看 --config gem 时,它告诉我只有一个 gem,它是/usr/bin/gem1.9.1
答案1
安装两个版本有问题吗?使用存储库中的版本?我会使用以下命令安装 ruby 1.9.2:
sudo apt-get install ruby1.9.1-full
然后更新“替代方案”系统以使用 ruby 1.9:
$ sudo update-alternatives --config ruby
There are 2 choices for the alternative ruby (providing /usr/bin/ruby).
Selection Path Priority Status
------------------------------------------------------------
* 0 /usr/bin/ruby1.8 50 auto mode
1 /usr/bin/ruby1.8 50 manual mode
2 /usr/bin/ruby1.9.1 10 manual mode
Press enter to keep the current choice[*], or type selection number: 2
update-alternatives: using /usr/bin/ruby1.9.1 to provide /usr/bin/ruby (ruby) in manual mode.
$ ruby --version
ruby 1.9.2p290 (2011-07-09 revision 32553) [x86_64-linux]
这还将设置erb
、irb
、rdoc
、ri
和testrb
手册页的替代方案。但是您需要单独更新 gem 命令:
$ sudo update-alternatives --config gem
There are 2 choices for the alternative gem (providing /usr/bin/gem).
Selection Path Priority Status
------------------------------------------------------------
* 0 /usr/bin/gem1.8 180 auto mode
1 /usr/bin/gem1.8 180 manual mode
2 /usr/bin/gem1.9.1 10 manual mode
Press enter to keep the current choice[*], or type selection number: 2
update-alternatives: using /usr/bin/gem1.9.1 to provide /usr/bin/gem (gem) in manual mode.
我知道,它被混淆地称为 ruby1.9.1 而不是 1.9.2,这是一些上游 Debian 打包的东西。
答案2
如果确实没有理由保留 ruby1.8,我发现删除它更容易,如下所示:
sudo apt-get remove ruby1.8
sudo apt-get install ruby1.9.3