Error while installing RVM using Curl in Ubuntu 14.04
curl, ruby, rvm, ubuntu
Solution
Try this before execute curl:
echo ipv4 >> ~/.curlrc
Problem
I was trying to install `RVM` using `Curl` in Ubuntu 14.04. I ran the following command: ``` \curl -sSL https://get.rvm.io | bash -s stable ``` And got the following error: ``` curl: (7) Failed to connect to get.rvm.io port 80: Network is unreachable ``` Any help to resolve this issue is highly appreciable. Thanks