9
3

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 1 year has passed since last update.

macOSで最新バージョンのRubyをインストールする方法

Last updated at Posted at 2023-10-27

こんにちは
この記事ではM2 Macに最新バージョンのRubyをインストールする方法を説明していきます

環境

  • M2 Mac
  • macOS
  • zshシェル

インストールのステップ

1, Homebrewがインストールされているか確認する
2, rbenvをインストールする
3,Ruby公式サイトにてRubyの最新バージョンを確認する
4,rbenvにてRubyに最新バージョンをインストールする
5, macのRubyからrbenvのRubyに切り替える

実際にインストールする

1, Homebrewがインストールされているか確認する

Homebrewのバージョンを確認するコマンドを入力する

$  brew -v 

インストールされていなければ  =>  command not found: brew
インストールされていれば  =>  Homebrew ○○○ (以下 ○○○ にはバージョンが表示される)

2, Homebrewをインストールする

Homebrewをインストールするコマンドを入力する

$ /bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)"

パスワード(Macを開く際の)を入力してEnterを押すとインストール開始

Homebrewのバージョンを確認するコマンドを入力して,インストールできているか確認する

-WARNINGが表示されてインストールできないときの対処法-

エラー文内の「==> Next steps:」以降に書かれている2つコマンドを順に入力する
(例を記述しますが,実際に出力されたコマンドを入力してください)

$ echo 'eval "$(/opt/homebrew/bin/brew shellenv)"'
$ eval "$(/opt/homebrew/bin/brew shellenv)"

改めて先ほど記述したHomebrewをインストールするコマンドを入力する

Homebrewのバージョンを確認するコマンドを入力して,インストールできているか確認する

3, rbenvをインストールする

rbenvのバージョンを確認するコマンドを入力して,インストールできているか確認する

$ rbenv -v

インストールされていなければrbenvをインストールすコマンドを入力する

$ brew install rbenv

rbenvのバージョンを確認するコマンドを入力して再度インストールできているか確認する

4,Ruby公式サイトにてRubyの最新バージョンを確認する

5,rbenvにてRubyに最新バージョンをインストールする

rbenvからインストールできるRubyのバージョンを確認するコマンドを入力

$ rbenv install -l

公式サイトに表記された最新バージョンをリスト内で確認して,Rubyをインストールするコマンドを入力する

$ rbenv install ○ ○ ○

rbenvにインストールされているRubyのバージョンを確認するコマンドを入力する

$ rbenv versions

(*がついているのが現在のバージョン)

5, macのRubyからrbenvのRubyに切り替える

下記のコマンドを順に入力する

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

サイド使用中のバージョンを確認する

$ rbenv versions

終わりに

記事を読んで下さり,ありがとうございました
表記されていることに誤りがあった際には報告よろしくお願いします

9
3
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
9
3

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?