Rocky Linux 8.5にruby 3.0.3をインストールする
環境
# cat /etc/redhat-release
Rocky Linux release 8.5 (Green Obsidian)
# git –version
git version 2.27.0
インストールの方法
1.rubyのversion管理ツールrbenvをインストールします
# git clone https://github.com/sstephenson/rbenv.git ~/.rbenv Cloning into '/root/.rbenv'... remote: Enumerating objects: 2993, done. remote: Counting objects: 100% (97/97), done. 略 Resolving deltas: 100% (1860/1860), done.
パッケージのPATHを設定します
# echo 'export PATH="$HOME/.rbenv/bin:$PATH"' >> ~/.bash_profile
2.rbenv初期化を行います
# ~/.rbenv/bin/rbenv init
出力結果
# Load rbenv automatically by appending # the following to ~/.bash_profile: eval "$(rbenv init - bash)"
bash_profileに追加します
# echo 'eval "$(rbenv init -)"' >> ~/.bash_profile
追加設定を反映します
# exec $SHELL -l
動作確認
# type rbenv
出力結果
rbenv は関数です rbenv () { local command; command="${1:-}"; if [ "$#" -gt 0 ]; then shift; fi; case "$command" in rehash | shell) eval "$(rbenv "sh-$command" "$@")" ;; *) command rbenv "$command" "$@" ;; esac }
rbenvのバージョンを確認します
# rbenv -v rbenv 1.2.0-6-g304cb7b
3.rbenvのプラグインruby-buildをインストールします
# git clone https://github.com/rbenv/ruby-build.git ~/.rbenv/plugins/ruby-build Cloning into '/root/.rbenv/plugins/ruby-build'... remote: Enumerating objects: 11919, done. 略 Resolving deltas: 100% (7865/7865), done.
ruby-buildプラグインを確認します
# ls ~/.rbenv/plugins/ruby-build/bin rbenv-install rbenv-uninstall ruby-build
4.Rubyをインストールします
依存パッケージをインストールします # sudo dnf install -y gcc openssl-devel readline-devel zlib-devel 略 インストール済み: ncurses-c++-libs-6.1-9.20180224.el8.x86_64 ncurses-devel-6.1-9.20180224.el8.x86_64 readline-devel-7.0-10.el8.x86_64
Rubyインストールできるバージョンを確認します
# rbenv install -l 2.6.9 2.7.5 3.0.3 jruby-9.3.2.0 mruby-3.0.0 rbx-5.0 truffleruby-21.3.0 truffleruby+graalvm-21.3.0 Only latest stable releases for each Ruby implementation are shown. Use 'rbenv install --list-all / -L' to show all local versions.
5.rbenvコマンドで最新バージョン「3.0.3」をインストールします
# rbenv install 3.0.3 Downloading ruby-3.0.3.tar.gz... -> https://cache.ruby-lang.org/pub/ruby/3.0/ruby-3.0.3.tar.gz Installing ruby-3.0.3... Installed ruby-3.0.3 to /root/.rbenv/versions/3.0.3
6.バージョンを確認します
# rbenv global 3.0.3 # ruby -v ruby 3.0.3p157 (2021-11-24 revision 3fb7d2cadc) [x86_64-linux]