How to install latest version from ruby-lang.org? it says 3.2.2, which is not in "rbenv install --list" #2317
Answered
by
alexanderankin
alexanderankin
asked this question in
Build failures
-
per the title, i think some documentation could be made more discoverable to ease new-comers to rbenv. |
Beta Was this translation helpful? Give feedback.
Answered by
alexanderankin
Nov 24, 2023
Replies: 1 comment 2 replies
-
err, actually - seems like the trick was to: git clone https://github.com/rbenv/ruby-build.git "$(rbenv root)"/plugins/ruby-build from and then rbenv install 3.2.2 started working contents of the rbenv package in ubuntu do not include this file, so maybe thats an ubuntu/packaging issue?$ sudo dpkg -L rbenv
[sudo] password for toor:
/.
/usr
/usr/bin
/usr/lib
/usr/lib/rbenv
/usr/lib/rbenv/completions
/usr/lib/rbenv/completions/rbenv.bash
/usr/lib/rbenv/completions/rbenv.fish
/usr/lib/rbenv/completions/rbenv.zsh
/usr/lib/rbenv/libexec
/usr/lib/rbenv/libexec/rbenv
/usr/lib/rbenv/libexec/rbenv---version
/usr/lib/rbenv/libexec/rbenv-commands
/usr/lib/rbenv/libexec/rbenv-completions
/usr/lib/rbenv/libexec/rbenv-exec
/usr/lib/rbenv/libexec/rbenv-global
/usr/lib/rbenv/libexec/rbenv-help
/usr/lib/rbenv/libexec/rbenv-hooks
/usr/lib/rbenv/libexec/rbenv-init
/usr/lib/rbenv/libexec/rbenv-local
/usr/lib/rbenv/libexec/rbenv-prefix
/usr/lib/rbenv/libexec/rbenv-rehash
/usr/lib/rbenv/libexec/rbenv-root
/usr/lib/rbenv/libexec/rbenv-sh-rehash
/usr/lib/rbenv/libexec/rbenv-sh-shell
/usr/lib/rbenv/libexec/rbenv-shims
/usr/lib/rbenv/libexec/rbenv-version
/usr/lib/rbenv/libexec/rbenv-version-file
/usr/lib/rbenv/libexec/rbenv-version-file-read
/usr/lib/rbenv/libexec/rbenv-version-file-write
/usr/lib/rbenv/libexec/rbenv-version-name
/usr/lib/rbenv/libexec/rbenv-version-origin
/usr/lib/rbenv/libexec/rbenv-versions
/usr/lib/rbenv/libexec/rbenv-whence
/usr/lib/rbenv/libexec/rbenv-which
/usr/share
/usr/share/doc
/usr/share/doc/rbenv
/usr/share/doc/rbenv/NEWS.Debian.gz
/usr/share/doc/rbenv/README.md.gz
/usr/share/doc/rbenv/changelog.Debian.gz
/usr/share/doc/rbenv/copyright
/usr/share/man
/usr/share/man/man1
/usr/share/man/man1/rbenv.1.gz
/usr/bin/rbenv |
Beta Was this translation helpful? Give feedback.
2 replies
Answer selected by
mislav
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
err, actually - seems like the trick was to:
git clone https://github.com/rbenv/ruby-build.git "$(rbenv root)"/plugins/ruby-build
from
https://github.com/rbenv/rbenv/blob/d10388a0529cb4f05b170395bb01c257a8186062/README.md?plain=1#L125-L129
and then
started working
contents of the rbenv package in ubuntu do not include this file, so maybe thats an ubuntu/packaging issue?