Hey guys!
I’m trying to install ruby but none of the commands seem to be working.
Does anyone know how to do it?
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 toolbox/doc at main · debarshiray/toolbox · GitHub
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
It worked THANK YOU
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
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
Inside Toolbox, run the following command to install the Development Tools, which also contain the GCC.
dnf -y groupinstall "Development Tools"
Thanks you . finally everything is set and done.
you guys literally saved me
This topic was automatically closed 28 days after the last reply. New replies are no longer allowed.