$ sudo apt-get install git tree
$ sudo apt-get install ruby-build
git がないと始まらないので入れる。ruby-build も入れる。
rbenv を入れてやる。
$ git clone https://github.com/sstephenson/rbenv.git ~/.rbenv
$ git clone https://github.com/sstephenson/ruby-build.git ~/.rbenv/plugins/ruby-build
.bash_profile に追加して、読み込ませる。
$ echo 'export PATH="$HOME/.rbenv/bin:$PATH"' >> ~/.bash_profile
$ echo 'eval "$(rbenv init -)"' >> ~/.bash_profile
$ source ~/.bash_profile
何を入れれるか調べて、必要なものを入れて、使うものを指定して、rehash しておく。
$ rbenv install -l
$ rbenv install 2.1.7
$ rbenv install 2.2.3
$ rbenv global 2.2.3
$ rbenv rehash
何を指しているか確認。
$ which ruby
$ ruby -v
$ which gem
$ gem -v
コメント