1
1

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 5 years have passed since last update.

rbenvでRubyをインストールする

Last updated at Posted at 2019-09-14

これは何?

rbenvでRubyをインストールする方法のメモ。

Requirements

以下を想定して書かれた記事。

  • aptをPackage Managerとして利用しているLinux

セットアップとインストール

まずは、インストールされいるRubyを削除。

# 以下コマンド(コピペ対応)
sudo apt-get uninstall ruby

rbenvのインストール。

# 以下コマンド(コピペ対応)
cd $HOME
sudo apt-get update 
sudo apt-get install git-core curl zlib1g-dev build-essential libssl-dev libreadline-dev libyaml-dev libsqlite3-dev sqlite3 libxml2-dev libxslt1-dev libcurl4-openssl-dev python-software-properties libffi-dev

git clone https://github.com/rbenv/rbenv.git ~/.rbenv
echo 'export PATH="$HOME/.rbenv/bin:$PATH"' >> ~/.bashrc
echo 'eval "$(rbenv init -)"' >> ~/.bashrc
exec $SHELL

git clone https://github.com/rbenv/ruby-build.git ~/.rbenv/plugins/ruby-build
echo 'export PATH="$HOME/.rbenv/plugins/ruby-build/bin:$PATH"' >> ~/.bashrc
exec $SHELL

インストール可能なVersionをリストする。

rbenv install -l

リストされた中から特定のVersionをインストール。

rbenv install [インストールするVersion]

使うVersionを指定する。

# インストールされた
rbenv versions

# リストされた中から1つ選択する
rbenv local [使うVersion]
1
1
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
1
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?