How to install ruby?

Hey guys!

I’m trying to install ruby but none of the commands seem to be working.
Does anyone know how to do it?

The Endless OS is only compatible with Flatpak Applications. At the moment Ruby doesn’t have a Flatpak version

You can install using the toolbox command. The Toolbox is a tool that offers a familiar RPM based environment for developing and debugging software that runs fully unprivileged using Podman. I recommend reading the toolbox command documentation using the command toolbox --help or github.com/debarshiray/toolbox/tree/master/doc

Create a new toolbox container using the command:

toolbox create --release f33

To run the toolbox use the command:

toolbox enter --release f33

To install Ruby use the command:

sudo dnf install ruby
1 Like

It worked THANK YOU :rose: :rose: :rose:

I’m trying to install jekyll , is it okay if I ask more questions if I ran into problems in the future?

To install Jekyll use the command in the toolbox:

sudo dnf install jekyll

Yes

Thank you I really appreciate the help :rose:

I have installed ruby and jekyll but apparently I need to install gcc as well
tried installing it in toolbox but no luck . a little help please is really appreciated :rose: :pray:

Inside Toolbox, run the following command to install the Development Tools, which also contain the GCC.

dnf -y groupinstall "Development Tools"
1 Like

Thanks you . finally everything is set and done.
you guys literally saved me :rose: :rose: :pray: :pray:

This topic was automatically closed 28 days after the last reply. New replies are no longer allowed.