両方をインストールすることに問題はありますか?そして、リポジトリのバージョンを使用していますか?私は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
およびmanページを。ただし、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.
私は知っています、それは1.9.2ではなく、紛らわしいruby1.9.1と呼ばれています。