LoginSignup
2
0

More than 5 years have passed since last update.

Rubyの環境構築

Last updated at Posted at 2017-01-26

やったこと

(追記)
以下のサイトを使ってトラブルシューティング
* http://ztbuz.hateblo.jp/entry/2013/12/14/193235

手動でインストールの手順

curlコマンドを用いてソースをダウンロードする

curl -O https://ftp.ruby-lang.org/pub/ruby/2.2/ruby-2.2.5.tar.gz

ダウンロードしたファイルを解凍する

tar xfvz ruby-2.2.5.tar.gz

解凍したディレクトリに移動する

cd ruby-2.2.5

コンパイルとインストールを行う
-> スーパーユーザで以下のコマンドを実行すること

./configure
make
make install

Rubyがインストールされていることを確認する

ruby -v
2
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
2
0