Installing RVM on Ubuntu

后端 未结 4 1463
谎友^
谎友^ 2020-12-15 05:41

I\'ve got a strange error when I try to run this rvm install script (newly installed ubuntu 11.10):

bash < <(curl -s https://rvm.beginrescueend.

相关标签:
4条回答
  • 2020-12-15 06:05

    You may have installed the debian packaged rvm. You can clean it first with:

    $ sudo apt-get --purge remove ruby-rvm 
    0 讨论(0)
  • 2020-12-15 06:06

    You should follow these instruction on Ubuntu, Ruby, RVM, Rails, and You on Ryan Bigg's blog.

    0 讨论(0)
  • 2020-12-15 06:08

    In command prompt past the following lines:-

    1)sudo apt-get update

    2)sudo apt-get install curl

    3)\curl -L https://get.rvm.io | bash -s stable

    4)source ~/.rvm/scripts/rvm

    5)rvm requirements

    6)rvm install ruby 1.9.3

    7)rvm use ruby 1.9.3

    8)rvm gemset create new-rails

    9)rvm use @new-rails --default

    0 讨论(0)
  • 2020-12-15 06:25

    As it is said by error message:

    To continue in insecure mode run 'echo insecure >> ~/.curlrc'.

    Just run echo insecure >> ~/.curlrc. Then rerun;

    curl -L https://get.rvm.io | bash
    
    0 讨论(0)
提交回复
热议问题