LoginSignup
11
9

More than 5 years have passed since last update.

rbenv

Last updated at Posted at 2014-06-08

rbenv とは?

rbenvとは複数のRubyを管理するためのサードパーティツールです。

インストール

システムワイドにインストール

# cd /usr/local
# git clone git://github.com/sstephenson/rbenv.git

rbenv へパスを通す設定と初期化を行うため下記を追記します。

/etc/profile.d/rbenv.sh
# rbenv
export RBENV_ROOT="/usr/local/rbenv"
export PATH="${RBENV_ROOT}/bin:${PATH}"
eval "$(rbenv init -)"

rbenvの確認

# rbenv --version
rbenv 0.4.0-89-g14bc162
11
9
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
11
9