我的macbook是OSX El Capitan。它预装了Apple通用 Ruby版本2.0.0 。
现在,我想使用最新的 Ruby 2.3.0 。我设法使用 rvm 来安装Ruby 2.3.0。在 rvm 完成安装ruby 2.3.0之后,我看到以下消息:
Ruby was built without documentation, to build it run: rvm docs generate-ri
/Users/John/.rvm/bin/rvm: line 66: shell_session_update: command not found
Creating alias default for ruby-2.3.0...
* To start using RVM you need to run `source /Users/John/.rvm/scripts/rvm`
in all your open shell windows, in rare cases you need to reopen all shell windows.
我按照这个消息,&运行命令
source /Users/John/.rvm/scripts/rvm
但是当我运行ruby -v
时,该版本仍然是Apple预安装的Ruby 2.0.0。如何通过 rvm ?
(在路径.rvm/rubies
下我可以找到ruby-2.3.0)
答案 0 :(得分:1)
要切换到使用2.3.0,请执行
rvm use 2.3.0
要将其设为默认值,请执行
rvm use --default 2.3.0