둘 다 설치하는 데 문제가 있습니까? 그리고 저장소의 버전을 사용합니까? 루비 1.9.2를 다음과 같이 설치합니다.
sudo apt-get install ruby1.9.1-full
그런 다음 "alternatives"시스템을 업데이트하여 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.
나는 그것이 업스트림 데비안 패키징 일인 1.9.2가 아니라 ruby1.9.1이라고 혼동된다는 것을 안다.