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.
私はターミナルの使用に関してはまったくの初心者なので、Mac OS X 10.7.3 で rvm を使用して Ruby バージョン (1.8.7) をアップグレードしようとすると、ここで何が起こっているのかよくわかりません。
入力すると
rvm install current && rvm use current
私はこれを取得します
system system
これは何を意味するのでしょうか?また、最新バージョンのインストールを続行するにはどうすればよいですか?
rvmcurrentコマンドは、現在アクティブな Ruby のインストールの名前を出力します。この場合、システムにプリインストールされている Ruby (1.8.7) を使用しています。
current
これを試して:
rvm install 2.0 # (or whatever version you need) rvm use 2.0 --default # this sets the default to the 2.0 install