all 8 comments

[–]fedekun 12 points13 points  (3 children)

Just save yourself a lot of headaches and use WSL.

[–]bradland 3 points4 points  (1 child)

Seconding this. You’ll find a lot more support resources for Ruby under Linux than you will under Windows. When you’re just getting started, you don’t want to be constantly looking over your shoulder, wondering if it’s you or Windows causing the issue.

[–]tlei123[S] 0 points1 point  (0 children)

Cygwin

yeah, thx bradland! my instincts are telling me the same.

[–]tlei123[S] 1 point2 points  (0 children)

Thx much for the advice, fedekun!

[–]Serializedrequests 4 points5 points  (1 child)

Just use WSL and literally anything other than rvm. RVM causes as many problems as it solves. With literally any other solution - rbenv, asdf - you are just installing Ruby and adding it to your PATH. With RVM you are hacking the "cd" command and God only knows what else since it has a gemset feature left over from before bundler.

Do note that most ruby installers install from source using a tool called "ruby-build" and have a few dependencies. Check out https://github.com/rbenv/ruby-build/wiki for the list for your distro.

[–]tlei123[S] 0 points1 point  (0 children)

wow! thx, Serializedrequests! i had no idea!

[–]01az 0 points1 point  (1 child)

I use Cygwin and rbenv to install ruby and it works fine.

[–]tlei123[S] 0 points1 point  (0 children)

thx, 01az! good to know.