Problem installing RVM

后端 未结 8 1220
失恋的感觉
失恋的感觉 2021-02-04 12:24

I have executed the commands as prescribed in the instructions at the rvm website but things don\'t seem to work..

Fetching the code from the git repository runs smoothl

相关标签:
8条回答
  • 2021-02-04 13:20

    Ok, for anyone who tried to install RVM using sudo and is now pulling their hair out trying to get it to install in $HOME/.rvm, here's what did it for me:

    When you installed RVM using sudo, it created a file /etc/rvmrc, which contains the following:

    umask g+w  
    export rvm_path="/usr/local/rvm"  
    

    This makes all future attempts at installation (even when not run as sudo) install into /usr/local/rvm, which is NOT what you want for a single user installation. So remove /etc/rvmrc and then you can run

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

    and it will install properly into $HOME/.rvm

    0 讨论(0)
  • 2021-02-04 13:20

    Look at the section "Troubleshooting your install" here. Since you are on Ubuntu, you probably need to make further mods to you .bashrc

    0 讨论(0)
提交回复
热议问题