LoginSignup
10
16

More than 5 years have passed since last update.

Rubyのアンインストールから再インストールまで

Posted at

ruby の特定バージョンを削除

ruby —version # バージョン調査
which ruby # ruby がどこにあるか

-> rbenv 以下にあることがわかった

rbenv —help # rbenv の使い方調査
rbenv uninstall 2.2.2 # アンインストール

ruby の特定バージョンのインストールと rails の準備

rbenv install 2.2.2 # インストール
gem install bundler # bundler のインストール
vi Gemfile # rb-readline を削除
bundle install # gem (s) のインストール

rb-readline なしで動くか

bundle exec rails c # rails console のテスト

これで動いたら OK!!

10
16
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
10
16