0
2

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 3 years have passed since last update.

LIGアドベントカレンダーAdvent Calendar 2019

Day 13

MacへRubyをインストールする際の備忘録

Last updated at Posted at 2019-12-12

インストールメモ

rbenvruby-build のインストール

$ brew install rbenv ruby-build

Ruby をインストール

執筆時点で最新の Ruby 2.5.6 をインストールする。
補足ですが、Rubyのバージョンは rbenv install -l で検索することができます。

$ rbenv install 2.6.5

.zshrc の編集

rbenv のコマンドを利用できるように、パスを設定します。
私は、zshを利用しているため、 .zshrc に下記設定を追加しました。

export PATH="$HOME/.rbenv/bin:$PATH" 
eval "$(rbenv init - zsh)"

追記後、下記コマンドを実行する。

$ source .zshrc

Rubyのバージョンを切り替える

MacにはデフォルトでRubyがインストールされているので、今回インストールしたRubyのバージョンに切り替えてみます。

$ rbenv versions
* system (set by /Users/username/.rbenv/version)
  2.6.5
$ rbenv global 2.6.5
$ rbenv versions
  system
* 2.6.5 (set by /Users/username/.rbenv/version)
$ ruby -v
ruby 2.6.5p114 (2019-10-01 revision 67812) [x86_64-darwin18] 

Hello, World!を書いてみる

hello.rb
puts "Hello, World"
$ ruby hello.rb
Hello, World!

以上!

参考文献

0
2
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
2

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?