Error while installing ruby using rvm

后端 未结 14 2108

Am getting the below error while trying to install ruby using rvm:

$rvm install 1.9.3
Searching for binary rubies, this might take some time.
Checking requir         


        
14条回答
  •  抹茶落季
    2020-12-13 15:26

    I faced the same problem while executing the command

    curl -L https://get.rvm.io | bash -s stable --autolibs=3 --rails

    It appeared to be that I was using the command as not a previleged user. So, using

    sudo curl -L https://get.rvm.io | bash -s stable --autolibs=3 --rails
    

    solved the problem

提交回复
热议问题