0
0

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.

Ruby環境構築まとめ~mac版~

Posted at

はじめに

あたらしくmacを購入して、Rubyの環境を作り直す機会があったので備忘録としてまとめます。
#Homebrewをインストール
まずhomebrewをインストールします。(もうすでにインストール済みの人は大丈夫です)


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

このコマンドをターミナルで実行するとインストールが完了します。
#wgetのインストール
wgetをインストールします。


brew install wget

#Rubyのインストール
wgetのインストールが完了したら、Rubyのインストールに入っていきます。
手順としては

  • homebrewでrbenvをインストール
  • パスを通す
  • rubyのインストール
    と言った感じです。
    では、rbenvをインストールしていきます。

brew install rbenv
brew install ruby-build

この二つのコマンドを実行してインストールします。
インストールが終わったら、パスを通していきます。


echo 'export PATH="$HOME/.rbenv/bin:$PATH"' >> ~/.zshrc
echo 'if which rbenv > /dev/null; then eval "$(rbenv init -)"; fi' >> ~/.zshrc
source ~/.zshrc

これでrbenvのインストールとパスを通すことができました。
いよいよRubyをインストールしていきます。

rbenv install --list
rbenv install 2.6.6
rbenv rehash
rbenv global 2.6.6

1つ目のコマンドでダウンロードできるRubyのバージョン一覧を確認できます。
2つ目のコマンドでダウンロードするRubyのバージョンを指定します。(今回は2.6.6を選択しました)
3つ目のコマンドでrbenvの再読み込み、4つ目でdefaultで使うバージョンの指定をしています。

一通りの作業が終わったら、ターミナルで

ruby -v

をやって自分が先ほど指定したバージョンになっているか確認してみてください。
なっていなかったら、pathがうまく通ってない可能性があるので、zshrcを確認してみてください。

0
0
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
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?