Ruby RVM apt-get update error

前端 未结 17 2404
醉酒成梦
醉酒成梦 2020-12-02 12:03

I get following error when trying to install anything with RVM:

Searching for binary rubies, this might take some time.
Found remote file https://rvm.io/bina         


        
17条回答
  •  无人及你
    2020-12-02 12:46

    You can try to skip the rvm updating system so apt-get won't be called.

    # Disable RVM from trying to install necessary software via apt-get
    rvm autolibs disable
    
    # Then try installing Ruby:
    rvm install 2.4.0
    

    See https://stackoverflow.com/a/16759839/1212791

提交回复
热议问题