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

Était-ce utile?

La 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.

Licencié sous: CC-BY-SA avec attribution
Non affilié à StackOverflow
scroll top