LoginSignup
2
4

More than 5 years have passed since last update.

rbenvをサクッとインストールする Mac編

Last updated at Posted at 2019-01-31

これ何?

  • 公式のREADMEの要点をまとめたもの
  • サクッとrbenvをインストールしたい人用にまとめました
  • 詳しく知りたい方は公式のREADMEを参照してください
  • Homebrewを前提としているので、必要な方はこちらを参照してインストールしてください

rbenvのインストール

$ brew install rbenv
$ rbenv init
$ source ~/.bash_profile
$ curl -fsSL https://github.com/rbenv/rbenv-installer/raw/master/bin/rbenv-doctor | bash
$ rbenv install -l
$ rbenv install 2.6.0
$ rbenv local 2.6.0
$ ruby -v
ruby 2.6.0p0 (2018-12-25 revision 66547) [x86_64-darwin18]
$ gem install bundler

rbenvのバージョンアップ

$ brew upgrade rbenv ruby-build
2
4
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
2
4