Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
当我查看 Ruby 的版本时
`$ ruby -v`
我明白了
ruby 1.8.7 (2011-06-30 patchlevel 352) [x86_64-linux]
但是当我想升级 Ruby
$ rvm install 1.9.3
Already installed ruby-1.9.3-p194.
有什么问题?
谢谢大家!
rvm 选择的 ruby 版本取决于您使用的 rvm 版本。
尝试关注
rvm use 1.9.3 ruby -v
要查找所有已安装的 ruby 版本,请使用以下命令
rvm list
我看不出有什么问题。
您告诉 RVM 使用的版本是 1.8.7,并且您还安装了 1.9.3,如果您愿意,可以告诉 RVM 使用。