1

I'm trying to install RVM and I'm following the instructions from the RVM webpage. It says to use this command in the cmd:

     curl -L https://get.rvm.io | bash -s stable --ruby

But it says that 'curl' is not a reconized command:

     'curl' is not recognized as an internal or external command,
     operable program or batch file.

Any thoughts on this?

three
  • 8,262
  • 3
  • 35
  • 39
Evan
  • 51
  • 1
  • 1
  • 8

1 Answers1

5

Windows doesn't come with the 'curl' command built-in. You can download it from here. But that isn't going to help you much, because RVM doesn't support Windows :)

You can use pik instead.

Community
  • 1
  • 1
PinnyM
  • 35,165
  • 3
  • 73
  • 81
  • Exactly what I was just about to add. According to http://stackoverflow.com/a/12910824/2141283 pik will do the trick. – nbrew Mar 18 '13 at 19:39