meawoppl
meawoppl

Reputation: 2802

Trying to Get Started With Rails on Ubuntu

I am having some bumpy getting Rails running on my Ubuntu machine. I was hoping that this script would be a no-brainer install: https://github.com/rkjha/RailsOnUbuntu/blob/master/rails-installer.sh

But I ran into a slew of problems. The first was that my Ubuntu issued rvm was messing with things, so I ran this solution: Installing RVM on Ubuntu

However, I am still bumping my head against the following seemingly dumb problem:

./rails-installer.sh: line 38: /home/meawoppl/.rvm/scripts/rvm: No such file or directory

Upvotes: 1

Views: 203

Answers (2)

user1007711
user1007711

Reputation:

I've used the Rails Ready script on Ubuntu several times and its pretty great. Highly useful and recommended.

Upvotes: 1

mpapis
mpapis

Reputation: 53188

Why not follow RVM site installation instructions:

curl -L get.rvm.io | bash -s stable --rails

This will install latest:

  • rvm
  • ruby
  • rails

It will do short stop displaying commands to execute - but there is not much work to do, just copy/paste it to other terminal.

RVM2 will further simplify the above step so it all will be automated.

Upvotes: 1

Related Questions