Question

I'm trying to install ruby and rails at once using curl with the following command:

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

However I'm getting the following error

curl: (56) Proxy CONNECT aborted

I'm using Ubuntu 13.10

Was it helpful?

Solution

Try:

unset HTTPS_PROXY

and then proceed with your installation. If it works, find in your ~/.bashrc, ~/.bash_profile or similar line saying something like

export HTTPS_PROXY = 'your_proxy_url'

and delete it.

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top