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を使うための rbenvのコマンド

Posted at

前回の記事でrbenvについて細かく書きたいので
少し内容を引き継いで書きます。

brewのインストールなど

rbenvを使う前提としてbrewのインストールかアップデートをしてください
インストールはこちらの公式ベージから
image.png

下の方にあるインストール下のコマンドを
ターミナルで打ち込みます。

すでにインストール済みなら
こちらのコマンドで更新とアップグレードしてください

brew update && brew upgrade

rbenvコマンド

rbenv versions
# rubyのバージョン確認

rbenv install -l
# インストールできるrubyバージョン一覧
# なおbrewの更新で一覧は変わります。

rbenv install 2.6.6
# 仮に2.6.6をインストーしたい時はこれ

rbenv local 2.1.5
# 使うバージョンの変更(カレントディレクトリで使うバージョン)、これ重要

rbenv rehash
# 更新

rbenv global バージョン
# デフォルトで利用するバージョンを指定

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?