2015-03-29

Mintにrubyをインストール

Linux Mint17.1(64bit), rbenv, ruby-build

rbenvのインストール

https://github.com/sstephenson/rbenv#installation
git clone https://github.com/sstephenson/rbenv.git ~/.rbenv
echo 'export PATH="$HOME/.rbenv/bin:$PATH"' >> ~/.bashrc
echo 'eval "$(rbenv init -)"' >> ~/.bashrc
source ~/.bashrc
type rbenv
「rbenv は関数です」と表示されればOK。

ruby-buildのインストール

https://github.com/sstephenson/ruby-build
git clone https://github.com/sstephenson/ruby-build.git ~/.rbenv/plugins/ruby-build

rubyのビルドに必要なライブラリのインストール

https://github.com/sstephenson/ruby-build/wiki
apt-get install autoconf bison build-essential libssl-dev libyaml-dev libreadline6-dev zlib1g-dev libncurses5-dev libffi-dev libgdbm3 libgdbm-dev

rubyのインストール

rbenv install --list | grep " 2.*"
rbenv install 2.2.1
rbenv rehash
rbenv global 2.2.1
ruby -v

0 件のコメント:

コメントを投稿