LoginSignup
1
1

More than 3 years have passed since last update.

【Ubuntu】rbenvで使えるRubyを最新化するメモ

Last updated at Posted at 2019-05-15

メモ

# 現在ローカルで使用できるRuby Version一覧確認
% rbenv versions

# 現在ローカルにインストールできるRuby Version一覧
% rbenv install -l

# rbenvを最新に
% cd ~/.rbenv
% git pull origin master
% cd plugins/ruby-build
% git pull origin master

# 使いたいバージョンをインストール
% rbenv install x.x.x

# 現在使用できるRuby Version一覧の更新を確認
% rbenv versions

# あるディレクトリで使用するRubyのVersionを指定
% rbenv local 2.6.3

# bundler のインストール
% gem install bundler

参考

[rbenv]コマンド備忘録 - Qiita https://qiita.com/a_ishidaaa/items/8cc14453289dba1413dd

rbenv / Ruby / Ruby on Rails アップグレードの手順 | Workabroad.jp https://workabroad.jp/posts/2113

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