Add missing ruby-build plugin from install guide

This commit is contained in:
Ayoub Eddaoudi 2023-02-04 18:56:41 +01:00 committed by GitHub
parent 5b0cd8b7f0
commit 3d6d6db37f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 6 additions and 0 deletions

View File

@ -81,6 +81,12 @@ exec bash
git clone https://github.com/rbenv/ruby-build.git ~/.rbenv/plugins/ruby-build
```
We need to install the ruby-build plugin. since the ``rbenv install`` command does not ship with rbenv out-of-the-box.
```bash
git clone https://github.com/rbenv/ruby-build.git "$(rbenv root)"/plugins/ruby-build
```
Once this is done, we can install the correct Ruby version:
```bash