This guide will not install a specific Ruby version you want, although, it will setup rbenv so you can manage multiple Ruby versions.
It assumes that the project that requires a specific Ruby version has a file .ruby-version in the root of the project. So, simply running rbenv install from project root directory will use the version specified in that file and install it.
But if you still want to install a specific version of Ruby without using .ruby-version file, you can do so using:
$ rbenv install 3.4.1This will get you going with the latest version of rbenv without needing a system-wide install.
-
Clone rbenv into
~/.rbenv.$ git clone https://github.com/rbenv/rbenv.git ~/.rbenv -
Set up your shell to load rbenv.
$ ~/.rbenv/bin/rbenv init -
Restart your shell so that these changes take effect. (Opening a new terminal tab will usually do it.)
The rbenv install command does not ship with rbenv out-of-the-box, but is provided by the ruby-build plugin.
To install ruby-build, run the following command:
$ git clone https://github.com/rbenv/ruby-build.git "$(rbenv root)"/plugins/ruby-buildBefore attempting to install Ruby, check that your build environment has the necessary tools and libraries.
$ sudo apt-get install autoconf patch build-essential rustc libssl-dev libyaml-dev libreadline6-dev zlib1g-dev libgmp-dev libncurses5-dev libffi-dev libgdbm6 libgdbm-dev libdb-dev uuid-devLet's say, you are in the root of your project directory (my_app) and a file .ruby-version exists with the following version:
# my_app/.ruby-version
3.4.1Now, running the following command will automatically look for the version specified in .ruby-version and install it:
$ rbenv installFrom your project directory (my_app), run the following command to verify the version rbenv is currently using for this project among other rubies you have previously installed (if any):
$ rbenv versions
3.4.0
* 3.4.1 (set by /home/ammar/workspace/projects/my_app/.ruby-version)The asterisk (*) in the above output indicates the currently active version.
$ rbenv global 3.4.1$ rbenv shell 3.4.1To remove old Ruby versions, simply rm -rf the directory of the version you want to remove. You can find the directory of a particular Ruby version with the rbenv prefix command, e.g. rbenv prefix 3.4.0.
$ rbenv versions
3.4.0
3.4.1
$ rbenv prefix 3.4.0
/home/ammar/.rbenv/versions/3.4.0
$ rm -rf /home/ammar/.rbenv/versions/3.4.0
$ rbenv versions
3.4.1 $ git -C "$(rbenv root)" pull$ git -C "$(rbenv root)"/plugins/ruby-build pull